blob: ff0282479a781f93712ee87be57aa68b8be01c56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/ppc/kernel/setup.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Adapted from 'alpha' version by Gary Thomas
6 * Modified by Cort Dougan (cort@cs.nmt.edu)
7 * Modified for MBX using prep/chrp/pmac functions by Dan (dmalek@jlc.net)
8 * Further modified for generic 8xx by Dan.
9 */
10
11/*
12 * bootup setup stuff..
13 */
14
15#include <linux/config.h>
16#include <linux/errno.h>
17#include <linux/sched.h>
18#include <linux/kernel.h>
19#include <linux/mm.h>
20#include <linux/stddef.h>
21#include <linux/unistd.h>
22#include <linux/ptrace.h>
23#include <linux/slab.h>
24#include <linux/user.h>
25#include <linux/a.out.h>
26#include <linux/tty.h>
27#include <linux/major.h>
28#include <linux/interrupt.h>
29#include <linux/reboot.h>
30#include <linux/init.h>
31#include <linux/initrd.h>
32#include <linux/ioport.h>
33#include <linux/bootmem.h>
34#include <linux/seq_file.h>
35#include <linux/root_dev.h>
36
37#include <asm/mmu.h>
38#include <asm/reg.h>
39#include <asm/residual.h>
40#include <asm/io.h>
41#include <asm/pgtable.h>
42#include <asm/mpc8xx.h>
43#include <asm/8xx_immap.h>
44#include <asm/machdep.h>
45#include <asm/bootinfo.h>
46#include <asm/time.h>
47#include <asm/xmon.h>
Vitaly Bordug457e04c2005-11-02 22:55:14 +030048#include <asm/ppc_sys.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include "ppc8xx_pic.h"
51
52static int m8xx_set_rtc_time(unsigned long time);
53static unsigned long m8xx_get_rtc_time(void);
54void m8xx_calibrate_decr(void);
55
56unsigned char __res[sizeof(bd_t)];
57
58extern void m8xx_ide_init(void);
59
60extern unsigned long find_available_memory(void);
Marcelo Tosatti62c592edea2005-08-30 13:40:22 -030061extern void m8xx_cpm_reset(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062extern void m8xx_wdt_handler_install(bd_t *bp);
63extern void rpxfb_alloc_pages(void);
64extern void cpm_interrupt_init(void);
65
66void __attribute__ ((weak))
67board_init(void)
68{
69}
70
71void __init
72m8xx_setup_arch(void)
73{
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* Reset the Communication Processor Module.
75 */
Marcelo Tosatti079da352005-08-07 09:42:47 -070076 m8xx_cpm_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#ifdef CONFIG_FB_RPX
79 rpxfb_alloc_pages();
80#endif
81
82#ifdef notdef
83 ROOT_DEV = Root_HDA1; /* hda1 */
84#endif
85
86#ifdef CONFIG_BLK_DEV_INITRD
87#if 0
88 ROOT_DEV = Root_FD0; /* floppy */
89 rd_prompt = 1;
90 rd_doload = 1;
91 rd_image_start = 0;
92#endif
93#if 0 /* XXX this may need to be updated for the new bootmem stuff,
94 or possibly just deleted (see set_phys_avail() in init.c).
95 - paulus. */
96 /* initrd_start and size are setup by boot/head.S and kernel/head.S */
97 if ( initrd_start )
98 {
99 if (initrd_end > *memory_end_p)
100 {
101 printk("initrd extends beyond end of memory "
102 "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
103 initrd_end,*memory_end_p);
104 initrd_start = 0;
105 }
106 }
107#endif
108#endif
109 board_init();
110}
111
112void
113abort(void)
114{
115#ifdef CONFIG_XMON
116 xmon(0);
117#endif
118 machine_restart(NULL);
119
120 /* not reached */
121 for (;;);
122}
123
124/* A place holder for time base interrupts, if they are ever enabled. */
125irqreturn_t timebase_interrupt(int irq, void * dev, struct pt_regs * regs)
126{
127 printk ("timebase_interrupt()\n");
128
129 return IRQ_HANDLED;
130}
131
132static struct irqaction tbint_irqaction = {
133 .handler = timebase_interrupt,
134 .mask = CPU_MASK_NONE,
135 .name = "tbint",
136};
137
Marcelo Tosattifb64c242005-11-24 11:32:09 -0200138/* per-board overridable init_internal_rtc() function. */
139void __init __attribute__ ((weak))
140init_internal_rtc(void)
141{
142 /* Disable the RTC one second and alarm interrupts. */
Vitaly Bordug0ce928e2006-01-15 17:30:29 +0300143 clrbits16(&((immap_t *)IMAP_ADDR)->im_sit.sit_rtcsc, (RTCSC_SIE | RTCSC_ALE));
144
Marcelo Tosattifb64c242005-11-24 11:32:09 -0200145 /* Enable the RTC */
Vitaly Bordug0ce928e2006-01-15 17:30:29 +0300146 setbits16(&((immap_t *)IMAP_ADDR)->im_sit.sit_rtcsc, (RTCSC_RTF | RTCSC_RTE));
147
Marcelo Tosattifb64c242005-11-24 11:32:09 -0200148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* The decrementer counts at the system (internal) clock frequency divided by
151 * sixteen, or external oscillator divided by four. We force the processor
152 * to use system clock divided by sixteen.
153 */
154void __init m8xx_calibrate_decr(void)
155{
156 bd_t *binfo = (bd_t *)__res;
157 int freq, fp, divisor;
158
159 /* Unlock the SCCR. */
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700160 out_be32(&((immap_t *)IMAP_ADDR)->im_clkrstk.cark_sccrk, ~KAPWR_KEY);
161 out_be32(&((immap_t *)IMAP_ADDR)->im_clkrstk.cark_sccrk, KAPWR_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /* Force all 8xx processors to use divide by 16 processor clock. */
Vitaly Bordug0ce928e2006-01-15 17:30:29 +0300164 setbits32(&((immap_t *)IMAP_ADDR)->im_clkrst.car_sccr, 0x02000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* Processor frequency is MHz.
166 * The value 'fp' is the number of decrementer ticks per second.
167 */
168 fp = binfo->bi_intfreq / 16;
169 freq = fp*60; /* try to make freq/1e6 an integer */
170 divisor = 60;
171 printk("Decrementer Frequency = %d/%d\n", freq, divisor);
172 tb_ticks_per_jiffy = freq / HZ / divisor;
173 tb_to_us = mulhwu_scale_factor(freq / divisor, 1000000);
174
175 /* Perform some more timer/timebase initialization. This used
176 * to be done elsewhere, but other changes caused it to get
177 * called more than once....that is a bad thing.
178 *
179 * First, unlock all of the registers we are going to modify.
180 * To protect them from corruption during power down, registers
181 * that are maintained by keep alive power are "locked". To
182 * modify these registers we have to write the key value to
183 * the key location associated with the register.
184 * Some boards power up with these unlocked, while others
185 * are locked. Writing anything (including the unlock code?)
186 * to the unlocked registers will lock them again. So, here
187 * we guarantee the registers are locked, then we unlock them
188 * for our use.
189 */
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700190 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_tbscrk, ~KAPWR_KEY);
191 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_rtcsck, ~KAPWR_KEY);
192 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_tbk, ~KAPWR_KEY);
193 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_tbscrk, KAPWR_KEY);
194 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_rtcsck, KAPWR_KEY);
195 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_tbk, KAPWR_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Marcelo Tosattifb64c242005-11-24 11:32:09 -0200197 init_internal_rtc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /* Enabling the decrementer also enables the timebase interrupts
200 * (or from the other point of view, to get decrementer interrupts
201 * we have to enable the timebase). The decrementer interrupt
202 * is wired into the vector table, nothing to do here for that.
203 */
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700204 out_be16(&((immap_t *)IMAP_ADDR)->im_sit.sit_tbscr, (mk_int_int_mask(DEC_INTERRUPT) << 8) | (TBSCR_TBF | TBSCR_TBE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 if (setup_irq(DEC_INTERRUPT, &tbint_irqaction))
207 panic("Could not allocate timer IRQ!");
208
209#ifdef CONFIG_8xx_WDT
210 /* Install watchdog timer handler early because it might be
211 * already enabled by the bootloader
212 */
213 m8xx_wdt_handler_install(binfo);
214#endif
215}
216
217/* The RTC on the MPC8xx is an internal register.
218 * We want to protect this during power down, so we need to unlock,
219 * modify, and re-lock.
220 */
221static int
222m8xx_set_rtc_time(unsigned long time)
223{
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700224 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_rtck, KAPWR_KEY);
225 out_be32(&((immap_t *)IMAP_ADDR)->im_sit.sit_rtc, time);
226 out_be32(&((immap_t *)IMAP_ADDR)->im_sitk.sitk_rtck, ~KAPWR_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return(0);
228}
229
230static unsigned long
231m8xx_get_rtc_time(void)
232{
233 /* Get time from the RTC. */
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700234 return (unsigned long) in_be32(&((immap_t *)IMAP_ADDR)->im_sit.sit_rtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237static void
238m8xx_restart(char *cmd)
239{
240 __volatile__ unsigned char dummy;
241
242 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Vitaly Bordug0ce928e2006-01-15 17:30:29 +0300244 setbits32(&((immap_t *)IMAP_ADDR)->im_clkrst.car_plprcr, 0x00000080);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Clear the ME bit in MSR to cause checkstop on machine check
246 */
247 mtmsr(mfmsr() & ~0x1000);
248
Marcelo Tosattie37b0c92005-10-28 17:46:10 -0700249 dummy = in_8(&((immap_t *)IMAP_ADDR)->im_clkrst.res[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 printk("Restart failed\n");
251 while(1);
252}
253
254static void
255m8xx_power_off(void)
256{
257 m8xx_restart(NULL);
258}
259
260static void
261m8xx_halt(void)
262{
263 m8xx_restart(NULL);
264}
265
266
267static int
268m8xx_show_percpuinfo(struct seq_file *m, int i)
269{
270 bd_t *bp;
271
272 bp = (bd_t *)__res;
273
Marcelo Tosatti62c592edea2005-08-30 13:40:22 -0300274 seq_printf(m, "clock\t\t: %uMHz\n"
275 "bus clock\t: %uMHz\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 bp->bi_intfreq / 1000000,
277 bp->bi_busfreq / 1000000);
278
279 return 0;
280}
281
282#ifdef CONFIG_PCI
283static struct irqaction mbx_i8259_irqaction = {
284 .handler = mbx_i8259_action,
285 .mask = CPU_MASK_NONE,
286 .name = "i8259 cascade",
287};
288#endif
289
290/* Initialize the internal interrupt controller. The number of
291 * interrupts supported can vary with the processor type, and the
292 * 82xx family can have up to 64.
293 * External interrupts can be either edge or level triggered, and
294 * need to be initialized by the appropriate driver.
295 */
296static void __init
297m8xx_init_IRQ(void)
298{
299 int i;
300
301 for (i = SIU_IRQ_OFFSET ; i < SIU_IRQ_OFFSET + NR_SIU_INTS ; i++)
302 irq_desc[i].handler = &ppc8xx_pic;
303
304 cpm_interrupt_init();
305
306#if defined(CONFIG_PCI)
307 for (i = I8259_IRQ_OFFSET ; i < I8259_IRQ_OFFSET + NR_8259_INTS ; i++)
308 irq_desc[i].handler = &i8259_pic;
309
310 i8259_pic_irq_offset = I8259_IRQ_OFFSET;
311 i8259_init(0);
312
313 /* The i8259 cascade interrupt must be level sensitive. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Vitaly Bordug0ce928e2006-01-15 17:30:29 +0300315 clrbits32(&((immap_t *)IMAP_ADDR)->im_siu_conf.sc_siel, (0x80000000 >> ISA_BRIDGE_INT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (setup_irq(ISA_BRIDGE_INT, &mbx_i8259_irqaction))
317 enable_irq(ISA_BRIDGE_INT);
318#endif /* CONFIG_PCI */
319}
320
321/* -------------------------------------------------------------------- */
322
323/*
324 * This is a big hack right now, but it may turn into something real
325 * someday.
326 *
327 * For the 8xx boards (at this time anyway), there is nothing to initialize
328 * associated the PROM. Rather than include all of the prom.c
329 * functions in the image just to get prom_init, all we really need right
330 * now is the initialization of the physical memory region.
331 */
332static unsigned long __init
333m8xx_find_end_of_memory(void)
334{
335 bd_t *binfo;
336 extern unsigned char __res[];
337
338 binfo = (bd_t *)__res;
339
340 return binfo->bi_memsize;
341}
342
343/*
344 * Now map in some of the I/O space that is generically needed
345 * or shared with multiple devices.
346 * All of this fits into the same 4Mbyte region, so it only
347 * requires one page table page. (or at least it used to -- paulus)
348 */
349static void __init
350m8xx_map_io(void)
351{
352 io_block_mapping(IMAP_ADDR, IMAP_ADDR, IMAP_SIZE, _PAGE_IO);
353#ifdef CONFIG_MBX
354 io_block_mapping(NVRAM_ADDR, NVRAM_ADDR, NVRAM_SIZE, _PAGE_IO);
355 io_block_mapping(MBX_CSR_ADDR, MBX_CSR_ADDR, MBX_CSR_SIZE, _PAGE_IO);
356 io_block_mapping(PCI_CSR_ADDR, PCI_CSR_ADDR, PCI_CSR_SIZE, _PAGE_IO);
357
358 /* Map some of the PCI/ISA I/O space to get the IDE interface.
359 */
360 io_block_mapping(PCI_ISA_IO_ADDR, PCI_ISA_IO_ADDR, 0x4000, _PAGE_IO);
361 io_block_mapping(PCI_IDE_ADDR, PCI_IDE_ADDR, 0x4000, _PAGE_IO);
362#endif
363#if defined(CONFIG_RPXLITE) || defined(CONFIG_RPXCLASSIC)
364 io_block_mapping(RPX_CSR_ADDR, RPX_CSR_ADDR, RPX_CSR_SIZE, _PAGE_IO);
365#if !defined(CONFIG_PCI)
366 io_block_mapping(_IO_BASE,_IO_BASE,_IO_BASE_SIZE, _PAGE_IO);
367#endif
368#endif
369#if defined(CONFIG_HTDMSOUND) || defined(CONFIG_RPXTOUCH) || defined(CONFIG_FB_RPX)
370 io_block_mapping(HIOX_CSR_ADDR, HIOX_CSR_ADDR, HIOX_CSR_SIZE, _PAGE_IO);
371#endif
372#ifdef CONFIG_FADS
373 io_block_mapping(BCSR_ADDR, BCSR_ADDR, BCSR_SIZE, _PAGE_IO);
374#endif
375#ifdef CONFIG_PCI
376 io_block_mapping(PCI_CSR_ADDR, PCI_CSR_ADDR, PCI_CSR_SIZE, _PAGE_IO);
377#endif
378#if defined(CONFIG_NETTA)
379 io_block_mapping(_IO_BASE,_IO_BASE,_IO_BASE_SIZE, _PAGE_IO);
380#endif
381}
382
383void __init
384platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
385 unsigned long r6, unsigned long r7)
386{
387 parse_bootinfo(find_bootinfo());
388
389 if ( r3 )
390 memcpy( (void *)__res,(void *)(r3+KERNELBASE), sizeof(bd_t) );
391
392#ifdef CONFIG_PCI
393 m8xx_setup_pci_ptrs();
394#endif
395
396#ifdef CONFIG_BLK_DEV_INITRD
397 /* take care of initrd if we have one */
398 if ( r4 )
399 {
400 initrd_start = r4 + KERNELBASE;
401 initrd_end = r5 + KERNELBASE;
402 }
403#endif /* CONFIG_BLK_DEV_INITRD */
404 /* take care of cmd line */
405 if ( r6 )
406 {
407 *(char *)(r7+KERNELBASE) = 0;
408 strcpy(cmd_line, (char *)(r6+KERNELBASE));
409 }
410
Vitaly Bordug1461b4e2005-10-28 17:46:28 -0700411 identify_ppc_sys_by_name(BOARD_CHIP_NAME);
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 ppc_md.setup_arch = m8xx_setup_arch;
414 ppc_md.show_percpuinfo = m8xx_show_percpuinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 ppc_md.init_IRQ = m8xx_init_IRQ;
416 ppc_md.get_irq = m8xx_get_irq;
417 ppc_md.init = NULL;
418
419 ppc_md.restart = m8xx_restart;
420 ppc_md.power_off = m8xx_power_off;
421 ppc_md.halt = m8xx_halt;
422
423 ppc_md.time_init = NULL;
424 ppc_md.set_rtc_time = m8xx_set_rtc_time;
425 ppc_md.get_rtc_time = m8xx_get_rtc_time;
426 ppc_md.calibrate_decr = m8xx_calibrate_decr;
427
428 ppc_md.find_end_of_memory = m8xx_find_end_of_memory;
429 ppc_md.setup_io_mappings = m8xx_map_io;
430
Marcelo Tosatti566ecb92005-08-23 17:20:44 -0300431#if defined(CONFIG_BLK_DEV_MPC8xx_IDE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 m8xx_ide_init();
433#endif
434}