VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[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_DUMMY_CONSOLE
148         conswitchp = &dummy_con;
149 #endif
150 #ifdef CONFIG_SERIAL_8250
151         sbc8560_early_serial_map();
152 #endif
153 #ifdef CONFIG_SERIAL_TEXT_DEBUG
154         /* Invalidate the entry we stole earlier the serial ports
155          * should be properly mapped */ 
156         invalidate_tlbcam_entry(NUM_TLBCAMS - 1);
157 #endif
158
159         /* Set up MAC addresses for the Ethernet devices */
160         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 0);
161         if (def) {
162                 einfo = (struct ocp_gfar_data *) def->additions;
163                 memcpy(einfo->mac_addr, binfo->bi_enetaddr, 6);
164         }
165
166         def = ocp_get_one_device(OCP_VENDOR_FREESCALE, OCP_FUNC_GFAR, 1);
167         if (def) {
168                 einfo = (struct ocp_gfar_data *) def->additions;
169                 memcpy(einfo->mac_addr, binfo->bi_enet1addr, 6);
170         }
171
172 #ifdef CONFIG_BLK_DEV_INITRD
173         if (initrd_start)
174                 ROOT_DEV = Root_RAM0;
175         else
176 #endif
177 #ifdef  CONFIG_ROOT_NFS
178                 ROOT_DEV = Root_NFS;
179 #else
180                 ROOT_DEV = Root_HDA1;
181 #endif
182
183         ocp_for_each_device(mpc85xx_update_paddr_ocp, &(binfo->bi_immr_base));
184 }
185
186 /* ************************************************************************ */
187 void __init
188 platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
189               unsigned long r6, unsigned long r7)
190 {
191         /* parse_bootinfo must always be called first */
192         parse_bootinfo(find_bootinfo());
193
194         /*
195          * If we were passed in a board information, copy it into the
196          * residual data area.
197          */
198         if (r3) {
199                 memcpy((void *) __res, (void *) (r3 + KERNELBASE),
200                        sizeof (bd_t));
201         }
202
203 #ifdef CONFIG_SERIAL_TEXT_DEBUG
204         /* Use the last TLB entry to map CCSRBAR to allow access to DUART regs */
205         settlbcam(NUM_TLBCAMS - 1, UARTA_ADDR,
206                   UARTA_ADDR, 0x1000, _PAGE_IO, 0);
207 #endif
208
209 #if defined(CONFIG_BLK_DEV_INITRD)
210         /*
211          * If the init RAM disk has been configured in, and there's a valid
212          * starting address for it, set it up.
213          */
214         if (r4) {
215                 initrd_start = r4 + KERNELBASE;
216                 initrd_end = r5 + KERNELBASE;
217         }
218 #endif                          /* CONFIG_BLK_DEV_INITRD */
219
220         /* Copy the kernel command line arguments to a safe place. */
221
222         if (r6) {
223                 *(char *) (r7 + KERNELBASE) = 0;
224                 strcpy(cmd_line, (char *) (r6 + KERNELBASE));
225         }
226
227         /* setup the PowerPC module struct */
228         ppc_md.setup_arch = sbc8560_setup_arch;
229         ppc_md.show_cpuinfo = sbc8560_show_cpuinfo;
230
231         ppc_md.init_IRQ = sbc8560_init_IRQ;
232         ppc_md.get_irq = openpic_get_irq;
233
234         ppc_md.restart = mpc85xx_restart;
235         ppc_md.power_off = mpc85xx_power_off;
236         ppc_md.halt = mpc85xx_halt;
237
238         ppc_md.find_end_of_memory = mpc85xx_find_end_of_memory;
239
240         ppc_md.time_init = NULL;
241         ppc_md.set_rtc_time = NULL;
242         ppc_md.get_rtc_time = NULL;
243         ppc_md.calibrate_decr = mpc85xx_calibrate_decr;
244
245 #if defined(CONFIG_SERIAL_8250) && defined(CONFIG_SERIAL_TEXT_DEBUG)
246         ppc_md.progress = gen550_progress;
247 #endif  /* CONFIG_SERIAL_8250 && CONFIG_SERIAL_TEXT_DEBUG */
248
249         if (ppc_md.progress)
250                 ppc_md.progress("sbc8560_init(): exit", 0);
251 }