Merge master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-drm-fsl-dcu.git] / arch / powerpc / platforms / 83xx / mpc832x_rdb.c
1 /*
2  * arch/powerpc/platforms/83xx/mpc832x_rdb.c
3  *
4  * Copyright (C) Freescale Semiconductor, Inc. 2007. All rights reserved.
5  *
6  * Description:
7  * MPC832x RDB board specific routines.
8  * This file is based on mpc832x_mds.c and mpc8313_rdb.c
9  * Author: Michael Barkowski <michael.barkowski@freescale.com>
10  *
11  * This program is free software; you can redistribute  it and/or modify it
12  * under  the terms of  the GNU General  Public License as published by the
13  * Free Software Foundation;  either version 2 of the  License, or (at your
14  * option) any later version.
15  */
16
17 #include <linux/pci.h>
18
19 #include <asm/of_platform.h>
20 #include <asm/time.h>
21 #include <asm/ipic.h>
22 #include <asm/udbg.h>
23 #include <asm/qe.h>
24 #include <asm/qe_ic.h>
25
26 #include "mpc83xx.h"
27
28 #undef DEBUG
29 #ifdef DEBUG
30 #define DBG(fmt...) udbg_printf(fmt)
31 #else
32 #define DBG(fmt...)
33 #endif
34
35 #ifndef CONFIG_PCI
36 unsigned long isa_io_base = 0;
37 unsigned long isa_mem_base = 0;
38 #endif
39
40 /* ************************************************************************
41  *
42  * Setup the architecture
43  *
44  */
45 static void __init mpc832x_rdb_setup_arch(void)
46 {
47         struct device_node *np;
48
49         if (ppc_md.progress)
50                 ppc_md.progress("mpc832x_rdb_setup_arch()", 0);
51
52 #ifdef CONFIG_PCI
53         for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;)
54                 add_bridge(np);
55
56         ppc_md.pci_exclude_device = mpc83xx_exclude_device;
57 #endif
58
59 #ifdef CONFIG_QUICC_ENGINE
60         qe_reset();
61
62         if ((np = of_find_node_by_name(np, "par_io")) != NULL) {
63                 par_io_init(np);
64                 of_node_put(np);
65
66                 for (np = NULL; (np = of_find_node_by_name(np, "ucc")) != NULL;)
67                         par_io_of_config(np);
68         }
69 #endif                          /* CONFIG_QUICC_ENGINE */
70 }
71
72 static struct of_device_id mpc832x_ids[] = {
73         { .type = "soc", },
74         { .compatible = "soc", },
75         { .type = "qe", },
76         { .type = "mdio", },
77         {},
78 };
79
80 static int __init mpc832x_declare_of_platform_devices(void)
81 {
82         if (!machine_is(mpc832x_rdb))
83                 return 0;
84
85         /* Publish the QE devices */
86         of_platform_bus_probe(NULL, mpc832x_ids, NULL);
87
88         return 0;
89 }
90 device_initcall(mpc832x_declare_of_platform_devices);
91
92 void __init mpc832x_rdb_init_IRQ(void)
93 {
94
95         struct device_node *np;
96
97         np = of_find_node_by_type(NULL, "ipic");
98         if (!np)
99                 return;
100
101         ipic_init(np, 0);
102
103         /* Initialize the default interrupt mapping priorities,
104          * in case the boot rom changed something on us.
105          */
106         ipic_set_default_priority();
107         of_node_put(np);
108
109 #ifdef CONFIG_QUICC_ENGINE
110         np = of_find_node_by_type(NULL, "qeic");
111         if (!np)
112                 return;
113
114         qe_ic_init(np, 0);
115         of_node_put(np);
116 #endif                          /* CONFIG_QUICC_ENGINE */
117 }
118
119 /*
120  * Called very early, MMU is off, device-tree isn't unflattened
121  */
122 static int __init mpc832x_rdb_probe(void)
123 {
124         unsigned long root = of_get_flat_dt_root();
125
126         return of_flat_dt_is_compatible(root, "MPC832xRDB");
127 }
128
129 define_machine(mpc832x_rdb) {
130         .name           = "MPC832x RDB",
131         .probe          = mpc832x_rdb_probe,
132         .setup_arch     = mpc832x_rdb_setup_arch,
133         .init_IRQ       = mpc832x_rdb_init_IRQ,
134         .get_irq        = ipic_get_irq,
135         .restart        = mpc83xx_restart,
136         .time_init      = mpc83xx_time_init,
137         .calibrate_decr = generic_calibrate_decr,
138         .progress       = udbg_progress,
139 };