2 * MPC85xx setup and early boot code plus other random bits.
4 * Maintained by Kumar Gala (see MAINTAINERS for contact information)
6 * Copyright 2005 Freescale Semiconductor Inc.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/stddef.h>
15 #include <linux/kernel.h>
16 #include <linux/pci.h>
17 #include <linux/kdev_t.h>
18 #include <linux/delay.h>
19 #include <linux/seq_file.h>
20 #include <linux/of_platform.h>
23 #include <asm/machdep.h>
24 #include <asm/pci-bridge.h>
26 #include <mm/mmu_decl.h>
29 #include <sysdev/fsl_soc.h>
30 #include <sysdev/fsl_pci.h>
34 #include <sysdev/cpm2_pic.h>
40 static int mpc85xx_exclude_device(struct pci_controller
*hose
,
41 u_char bus
, u_char devfn
)
43 if (bus
== 0 && PCI_SLOT(devfn
) == 0)
44 return PCIBIOS_DEVICE_NOT_FOUND
;
46 return PCIBIOS_SUCCESSFUL
;
48 #endif /* CONFIG_PCI */
50 static void __init
mpc85xx_ads_pic_init(void)
52 struct mpic
*mpic
= mpic_alloc(NULL
, 0, MPIC_BIG_ENDIAN
,
57 mpc85xx_cpm2_pic_init();
61 * Setup the architecture
68 static const struct cpm_pin mpc8560_ads_pins
[] = {
70 {3, 29, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
71 {3, 30, CPM_PIN_OUTPUT
| CPM_PIN_SECONDARY
},
72 {3, 31, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
75 {2, 12, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
76 {2, 13, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
77 {3, 26, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
78 {3, 27, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
79 {3, 28, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
82 {1, 18, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
83 {1, 19, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
84 {1, 20, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
85 {1, 21, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
86 {1, 22, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
87 {1, 23, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
88 {1, 24, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
89 {1, 25, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
90 {1, 26, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
91 {1, 27, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
92 {1, 28, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
93 {1, 29, CPM_PIN_OUTPUT
| CPM_PIN_SECONDARY
},
94 {1, 30, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
95 {1, 31, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
96 {2, 18, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
}, /* CLK14 */
97 {2, 19, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
}, /* CLK13 */
100 {1, 4, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
101 {1, 5, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
102 {1, 6, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
103 {1, 8, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
104 {1, 9, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
105 {1, 10, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
106 {1, 11, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
107 {1, 12, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
108 {1, 13, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
109 {1, 14, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
110 {1, 15, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
111 {1, 16, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
112 {1, 17, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
},
113 {2, 16, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
}, /* CLK16 */
114 {2, 17, CPM_PIN_INPUT
| CPM_PIN_PRIMARY
}, /* CLK15 */
115 {2, 27, CPM_PIN_OUTPUT
| CPM_PIN_PRIMARY
},
118 static void __init
init_ioports(void)
122 for (i
= 0; i
< ARRAY_SIZE(mpc8560_ads_pins
); i
++) {
123 const struct cpm_pin
*pin
= &mpc8560_ads_pins
[i
];
124 cpm2_set_pin(pin
->port
, pin
->pin
, pin
->flags
);
127 cpm2_clk_setup(CPM_CLK_SCC1
, CPM_BRG1
, CPM_CLK_RX
);
128 cpm2_clk_setup(CPM_CLK_SCC1
, CPM_BRG1
, CPM_CLK_TX
);
129 cpm2_clk_setup(CPM_CLK_SCC2
, CPM_BRG2
, CPM_CLK_RX
);
130 cpm2_clk_setup(CPM_CLK_SCC2
, CPM_BRG2
, CPM_CLK_TX
);
131 cpm2_clk_setup(CPM_CLK_FCC2
, CPM_CLK13
, CPM_CLK_RX
);
132 cpm2_clk_setup(CPM_CLK_FCC2
, CPM_CLK14
, CPM_CLK_TX
);
133 cpm2_clk_setup(CPM_CLK_FCC3
, CPM_CLK15
, CPM_CLK_RX
);
134 cpm2_clk_setup(CPM_CLK_FCC3
, CPM_CLK16
, CPM_CLK_TX
);
138 static void __init
mpc85xx_ads_setup_arch(void)
141 ppc_md
.progress("mpc85xx_ads_setup_arch()", 0);
149 ppc_md
.pci_exclude_device
= mpc85xx_exclude_device
;
152 fsl_pci_assign_primary();
155 static void mpc85xx_ads_show_cpuinfo(struct seq_file
*m
)
157 uint pvid
, svid
, phid1
;
159 pvid
= mfspr(SPRN_PVR
);
160 svid
= mfspr(SPRN_SVR
);
162 seq_printf(m
, "Vendor\t\t: Freescale Semiconductor\n");
163 seq_printf(m
, "PVR\t\t: 0x%x\n", pvid
);
164 seq_printf(m
, "SVR\t\t: 0x%x\n", svid
);
166 /* Display cpu Pll setting */
167 phid1
= mfspr(SPRN_HID1
);
168 seq_printf(m
, "PLL setting\t: 0x%x\n", ((phid1
>> 24) & 0x3f));
171 machine_arch_initcall(mpc85xx_ads
, mpc85xx_common_publish_devices
);
174 * Called very early, device-tree isn't unflattened
176 static int __init
mpc85xx_ads_probe(void)
178 unsigned long root
= of_get_flat_dt_root();
180 return of_flat_dt_is_compatible(root
, "MPC85xxADS");
183 define_machine(mpc85xx_ads
) {
184 .name
= "MPC85xx ADS",
185 .probe
= mpc85xx_ads_probe
,
186 .setup_arch
= mpc85xx_ads_setup_arch
,
187 .init_IRQ
= mpc85xx_ads_pic_init
,
188 .show_cpuinfo
= mpc85xx_ads_show_cpuinfo
,
189 .get_irq
= mpic_get_irq
,
190 .restart
= fsl_rstcr_restart
,
191 .calibrate_decr
= generic_calibrate_decr
,
192 .progress
= udbg_progress
,