vserver 1.9.3
[linux-2.6.git] / arch / ppc / platforms / 85xx / sbc8560.c
1 /*
2  * arch/ppc/platforms/85xx/sbc8560.c
3  * 
4  * Wind River SBC8560 board specific routines
5  * 
6  * Maintainer: Kumar Gala <kumar.gala@freescale.com>
7  *
8  * Copyright 2004 Freescale Semiconductor Inc.
9  * 
10  * This program is free software; you can redistribute  it and/or modify it
11  * under  the terms of  the GNU General  Public License as published by the
12  * Free Software Foundation;  either version 2 of the  License, or (at your
13  * option) any later version.
14  */
15
16 #include <linux/config.h>
17 #include <linux/stddef.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/reboot.h>
22 #include <linux/pci.h>
23 #include <linux/kdev_t.h>
24 #include <linux/major.h>
25 #include <linux/console.h>
26 #include <linux/delay.h>
27 #include <linux/irq.h>
28 #include <linux/seq_file.h>
29 #include <linux/root_dev.h>
30 #include <linux/serial.h>
31 #include <linux/tty.h>  /* for linux/serial_core.h */
32 #include <linux/serial_core.h>
33 #include <linux/initrd.h>
34 #include <linux/module.h>
35
36 #include <asm/system.h>
37 #include <asm/pgtable.h>
38 #include <asm/page.h>
39 #include <asm/atomic.h>
40 #include <asm/time.h>
41 #include <asm/io.h>
42 #include <asm/machdep.h>
43 #include <asm/prom.h>
44 #include <asm/open_pic.h>
45 #include <asm/bootinfo.h>
46 #include <asm/pci-bridge.h>
47 #include <asm/mpc85xx.h>
48 #include <asm/irq.h>
49 #include <asm/immap_85xx.h>
50 #include <asm/kgdb.h>
51 #include <asm/ocp.h>
52 #include <mm/mmu_decl.h>
53
54 #include <syslib/ppc85xx_common.h>
55 #include <syslib/ppc85xx_setup.h>
56
57 struct ocp_gfar_data mpc85xx_tsec1_def = {
58         .interruptTransmit = MPC85xx_IRQ_TSEC1_TX,
59         .interruptError = MPC85xx_IRQ_TSEC1_ERROR,
60         .interruptReceive = MPC85xx_IRQ_TSEC1_RX,
61         .interruptPHY = MPC85xx_IRQ_EXT6,
62         .flags = (GFAR_HAS_GIGABIT | GFAR_HAS_MULTI_INTR | GFAR_HAS_PHY_INTR),
63         .phyid = 25,
64         .phyregidx = 0,
65 };
66
67 struct ocp_gfar_data mpc85xx_tsec2_def = {
68         .interruptTransmit = MPC85xx_IRQ_TSEC2_TX,
69         .interruptError = MPC85xx_IRQ_TSEC2_ERROR,
70         .interruptReceive = MPC85xx_IRQ_TSEC2_RX,
71         .interruptPHY = MPC85xx_IRQ_EXT7,
72         .flags = (GFAR_HAS_GIGABIT | GFAR_HAS_MULTI_INTR | GFAR_HAS_PHY_INTR),
73         .phyid = 26,
74         .phyregidx = 0,
75 };
76
77 struct ocp_fs_i2c_data mpc85xx_i2c1_def = {
78         .flags = FS_I2C_SEPARATE_DFSRR,
79 };
80
81
82 #ifdef CONFIG_SERIAL_8250
83 static void __init
84 sbc8560_early_serial_map(void)
85 {
86         struct uart_port uart_req;
87  
88         /* Setup serial port access */
89         memset(&uart_req, 0, sizeof (uart_req));
90         uart_req.irq = MPC85xx_IRQ_EXT9;
91         uart_req.flags = STD_COM_FLAGS;
92         uart_req.uartclk = BASE_BAUD * 16;
93         uart_req.iotype = SERIAL_IO_MEM;
94         uart_req.mapbase = UARTA_ADDR;
95         uart_req.membase = ioremap(uart_req.mapbase, MPC85xx_UART0_SIZE);
96         uart_req.type = PORT_16650;
97
98 #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB)
99         gen550_init(0, &uart_req);
100 #endif
101  
102         if (early_serial_setup(&uart_req) != 0)
103                 printk("Early serial init of port 0 failed\n");
104  
105         /* Assume early_serial_setup() doesn't modify uart_req */
106         uart_req.line = 1;
107         uart_req.mapbase = UARTB_ADDR;
108         uart_req.membase = ioremap(uart_req.mapbase, MPC85xx_UART1_SIZE);
109         uart_req.irq = MPC85xx_IRQ_EXT10;
110  
111 #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB)
112         gen550_init(1, &uart_req);
113 #endif
114  
115         if (early_serial_setup(&uart_req) != 0)
116                 printk("Early serial init of port 1 failed\n");
117 }
118 #endif
119
120 /* ************************************************************************
121  *
122  * Setup the architecture
123  *
124  */
125 static void __init
126 sbc8560_setup_arch(void)
127 {
128         struct ocp_def *def;
129         struct ocp_gfar_data *einfo;
130         bd_t *binfo = (bd_t *) __res;
131         unsigned int freq;
132
133         /* get the core frequency */
134         freq = binfo->bi_intfreq;
135
136         if (ppc_md.progress)
137                 ppc_md.progress("sbc8560_setup_arch()", 0);
138
139         /* Set loops_per_jiffy to a half-way reasonable value,
140            for use until calibrate_delay gets called. */
141         loops_per_jiffy = freq / HZ;
142
143 #ifdef CONFIG_PCI
144         /* setup PCI host bridges */
145         mpc85xx_setup_hose();
146 #endif
147 #ifdef CONFIG_SERIAL_8250
148         sbc8560_early_serial_map();
149 #endif
150 #ifdef CONFIG_SERIAL_TEXT_DEBUG
151         /* Invalidate the entry we stole earlier the serial ports
152          * should be properly mapped */ 
153         invalidate_tlbcam_entry(NUM_TLBCAMS - 1);
154 #endif
155
156         /* Set up MAC addresses for the Ethernet devices */
157         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 0);
158         if (def) {
159                 einfo = (struct ocp_gfar_data *) def->additions;
160                 memcpy(einfo->mac_addr, binfo->bi_enetaddr, 6);
161         }
162
163         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 1);
164         if (def) {
165                 einfo = (struct ocp_gfar_data *) def->additions;
166                 memcpy(einfo->mac_addr, binfo->bi_enet1addr, 6);
167         }
168
169 #ifdef CONFIG_BLK_DEV_INITRD
170         if (initrd_start)
171                 ROOT_DEV = Root_RAM0;
172         else
173 #endif
174 #ifdef  CONFIG_ROOT_NFS
175                 ROOT_DEV = Root_NFS;
176 #else
177                 ROOT_DEV = Root_HDA1;
178 #endif
179
180         ocp_for_each_device(mpc85xx_update_paddr_ocp, &(binfo->bi_immr_base));
181 }
182
183 /* ************************************************************************ */
184 void __init
185 platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
186               unsigned long r6, unsigned long r7)
187 {
188         /* parse_bootinfo must always be called first */
189         parse_bootinfo(find_bootinfo());
190
191         /*
192          * If we were passed in a board information, copy it into the
193          * residual data area.
194          */
195         if (r3) {
196                 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
197                        sizeof (bd_t));
198         }
199
200 #ifdef CONFIG_SERIAL_TEXT_DEBUG
201         /* Use the last TLB entry to map CCSRBAR to allow access to DUART regs */
202         settlbcam(NUM_TLBCAMS - 1, UARTA_ADDR,
203                   UARTA_ADDR, 0x1000, _PAGE_IO, 0);
204 #endif
205
206 #if defined(CONFIG_BLK_DEV_INITRD)
207         /*
208          * If the init RAM disk has been configured in, and there's a valid
209          * starting address for it, set it up.
210          */
211         if (r4) {
212                 initrd_start = r4 + KERNELBASE;
213                 initrd_end = r5 + KERNELBASE;
214         }
215 #endif                          /* CONFIG_BLK_DEV_INITRD */
216
217         /* Copy the kernel command line arguments to a safe place. */
218
219         if (r6) {
220                 *(char *) (r7 + KERNELBASE) = 0;
221                 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
222         }
223
224         /* setup the PowerPC module struct */
225         ppc_md.setup_arch = sbc8560_setup_arch;
226         ppc_md.show_cpuinfo = sbc8560_show_cpuinfo;
227
228         ppc_md.init_IRQ = sbc8560_init_IRQ;
229         ppc_md.get_irq = openpic_get_irq;
230
231         ppc_md.restart = mpc85xx_restart;
232         ppc_md.power_off = mpc85xx_power_off;
233         ppc_md.halt = mpc85xx_halt;
234
235         ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
236
237         ppc_md.time_init = NULL;
238         ppc_md.set_rtc_time = NULL;
239         ppc_md.get_rtc_time = NULL;
240         ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
241
242 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
243         ppc_md.progress = gen550_progress;
244 #endif  /* CONFIG_SERIAL_8250 && CONFIG_SERIAL_TEXT_DEBUG */
245
246         if (ppc_md.progress)
247                 ppc_md.progress("sbc8560_init(): exit", 0);
248 }