Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Setup pointers to hardware dependent routines. |
| 3 | * |
| 4 | * This file is subject to the terms and conditions of the GNU General Public |
| 5 | * License. See the file "COPYING" in the main directory of this archive |
| 6 | * for more details. |
| 7 | * |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 8 | * Copyright (C) 1996, 1997, 2004, 05 by Ralf Baechle (ralf@linux-mips.org) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Copyright (C) 2001, 2002, 2003 by Liam Davies (ldavies@agile.tv) |
| 10 | * |
| 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
| 13 | #include <linux/pci.h> |
| 14 | #include <linux/init.h> |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 15 | #include <linux/pm.h> |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 16 | #include <linux/serial.h> |
| 17 | #include <linux/serial_core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #include <asm/bootinfo.h> |
| 20 | #include <asm/time.h> |
| 21 | #include <asm/io.h> |
| 22 | #include <asm/irq.h> |
| 23 | #include <asm/processor.h> |
| 24 | #include <asm/reboot.h> |
| 25 | #include <asm/gt64120.h> |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 26 | #include <asm/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Ralf Baechle | 11ed6d5 | 2006-01-18 23:26:43 +0000 | [diff] [blame] | 28 | #include <asm/mach-cobalt/cobalt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | extern void cobalt_machine_restart(char *command); |
| 31 | extern void cobalt_machine_halt(void); |
| 32 | extern void cobalt_machine_power_off(void); |
Peter Horton | e87ddde | 2006-02-12 17:10:25 +0000 | [diff] [blame] | 33 | extern void cobalt_early_console(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | int cobalt_board_id; |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | const char *get_system_type(void) |
| 38 | { |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 39 | switch (cobalt_board_id) { |
| 40 | case COBALT_BRD_ID_QUBE1: |
| 41 | return "Cobalt Qube"; |
| 42 | case COBALT_BRD_ID_RAQ1: |
| 43 | return "Cobalt RaQ"; |
| 44 | case COBALT_BRD_ID_QUBE2: |
| 45 | return "Cobalt Qube2"; |
| 46 | case COBALT_BRD_ID_RAQ2: |
| 47 | return "Cobalt RaQ2"; |
| 48 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | return "MIPS Cobalt"; |
| 50 | } |
| 51 | |
| 52 | static void __init cobalt_timer_setup(struct irqaction *irq) |
| 53 | { |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 54 | /* Load timer value for 1KHz (TCLK is 50MHz) */ |
| 55 | GALILEO_OUTL(50*1000*1000 / 1000, GT_TC0_OFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 57 | /* Enable timer */ |
| 58 | GALILEO_OUTL(GALILEO_ENTC0 | GALILEO_SELTC0, GT_TC_CONTROL_OFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 60 | /* Register interrupt */ |
| 61 | setup_irq(COBALT_GALILEO_IRQ, irq); |
| 62 | |
| 63 | /* Enable interrupt */ |
| 64 | GALILEO_OUTL(GALILEO_INTR_T0EXP | GALILEO_INL(GT_INTRMASK_OFS), GT_INTRMASK_OFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | extern struct pci_ops gt64111_pci_ops; |
| 68 | |
| 69 | static struct resource cobalt_mem_resource = { |
Ralf Baechle | 5e46c3a | 2006-06-04 15:14:05 -0700 | [diff] [blame] | 70 | .start = GT64111_MEM_BASE, |
| 71 | .end = GT64111_MEM_END, |
| 72 | .name = "PCI memory", |
| 73 | .flags = IORESOURCE_MEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
| 76 | static struct resource cobalt_io_resource = { |
Ralf Baechle | 5e46c3a | 2006-06-04 15:14:05 -0700 | [diff] [blame] | 77 | .start = 0x1000, |
| 78 | .end = 0xffff, |
| 79 | .name = "PCI I/O", |
| 80 | .flags = IORESOURCE_IO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | static struct resource cobalt_io_resources[] = { |
Ralf Baechle | 5e46c3a | 2006-06-04 15:14:05 -0700 | [diff] [blame] | 84 | { |
| 85 | .start = 0x00, |
| 86 | .end = 0x1f, |
| 87 | .name = "dma1", |
| 88 | .flags = IORESOURCE_BUSY |
| 89 | }, { |
| 90 | .start = 0x40, |
| 91 | .end = 0x5f, |
| 92 | .name = "timer", |
| 93 | .flags = IORESOURCE_BUSY |
| 94 | }, { |
| 95 | .start = 0x60, |
| 96 | .end = 0x6f, |
| 97 | .name = "keyboard", |
| 98 | .flags = IORESOURCE_BUSY |
| 99 | }, { |
| 100 | .start = 0x80, |
| 101 | .end = 0x8f, |
| 102 | .name = "dma page reg", |
| 103 | .flags = IORESOURCE_BUSY |
| 104 | }, { |
| 105 | .start = 0xc0, |
| 106 | .end = 0xdf, |
| 107 | .name = "dma2", |
| 108 | .flags = IORESOURCE_BUSY |
| 109 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | #define COBALT_IO_RESOURCES (sizeof(cobalt_io_resources)/sizeof(struct resource)) |
| 113 | |
| 114 | static struct pci_controller cobalt_pci_controller = { |
| 115 | .pci_ops = >64111_pci_ops, |
| 116 | .mem_resource = &cobalt_mem_resource, |
| 117 | .mem_offset = 0, |
| 118 | .io_resource = &cobalt_io_resource, |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 119 | .io_offset = 0 - GT64111_IO_BASE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Ralf Baechle | 2925aba | 2006-06-18 01:32:22 +0100 | [diff] [blame] | 122 | void __init plat_mem_setup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 124 | static struct uart_port uart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | unsigned int devfn = PCI_DEVFN(COBALT_PCICONF_VIA, 0); |
| 126 | int i; |
| 127 | |
| 128 | _machine_restart = cobalt_machine_restart; |
| 129 | _machine_halt = cobalt_machine_halt; |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 130 | pm_power_off = cobalt_machine_power_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | board_timer_setup = cobalt_timer_setup; |
| 133 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 134 | set_io_port_base(CKSEG1ADDR(GT64111_IO_BASE)); |
| 135 | |
| 136 | /* I/O port resource must include UART and LCD/buttons */ |
| 137 | ioport_resource.end = 0x0fffffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* request I/O space for devices used on all i[345]86 PCs */ |
| 140 | for (i = 0; i < COBALT_IO_RESOURCES; i++) |
| 141 | request_resource(&ioport_resource, cobalt_io_resources + i); |
| 142 | |
| 143 | /* Read the cobalt id register out of the PCI config space */ |
| 144 | PCI_CFG_SET(devfn, (VIA_COBALT_BRD_ID_REG & ~0x3)); |
| 145 | cobalt_board_id = GALILEO_INL(GT_PCI0_CFGDATA_OFS); |
| 146 | cobalt_board_id >>= ((VIA_COBALT_BRD_ID_REG & 3) * 8); |
| 147 | cobalt_board_id = VIA_COBALT_BRD_REG_to_ID(cobalt_board_id); |
| 148 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 149 | printk("Cobalt board ID: %d\n", cobalt_board_id); |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | #ifdef CONFIG_PCI |
| 152 | register_pci_controller(&cobalt_pci_controller); |
| 153 | #endif |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 154 | |
| 155 | #ifdef CONFIG_SERIAL_8250 |
| 156 | if (cobalt_board_id > COBALT_BRD_ID_RAQ1) { |
| 157 | |
Peter Horton | e87ddde | 2006-02-12 17:10:25 +0000 | [diff] [blame] | 158 | #ifdef CONFIG_EARLY_PRINTK |
| 159 | cobalt_early_console(); |
| 160 | #endif |
| 161 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 162 | uart.line = 0; |
| 163 | uart.type = PORT_UNKNOWN; |
| 164 | uart.uartclk = 18432000; |
| 165 | uart.irq = COBALT_SERIAL_IRQ; |
Russell King | 59a675b | 2006-02-05 10:52:29 +0000 | [diff] [blame] | 166 | uart.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST; |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 167 | uart.iobase = 0xc800000; |
| 168 | uart.iotype = UPIO_PORT; |
| 169 | |
| 170 | early_serial_setup(&uart); |
| 171 | } |
| 172 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* |
| 176 | * Prom init. We read our one and only communication with the firmware. |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 177 | * Grab the amount of installed memory. |
| 178 | * Better boot loaders (CoLo) pass a command line too :-) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | */ |
| 180 | |
| 181 | void __init prom_init(void) |
| 182 | { |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 183 | int narg, indx, posn, nchr; |
| 184 | unsigned long memsz; |
| 185 | char **argv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | mips_machgroup = MACH_GROUP_COBALT; |
| 188 | |
Ralf Baechle | c4ed38a | 2005-02-21 16:18:36 +0000 | [diff] [blame] | 189 | memsz = fw_arg0 & 0x7fff0000; |
| 190 | narg = fw_arg0 & 0x0000ffff; |
| 191 | |
| 192 | if (narg) { |
| 193 | arcs_cmdline[0] = '\0'; |
| 194 | argv = (char **) fw_arg1; |
| 195 | posn = 0; |
| 196 | for (indx = 1; indx < narg; ++indx) { |
| 197 | nchr = strlen(argv[indx]); |
| 198 | if (posn + 1 + nchr + 1 > sizeof(arcs_cmdline)) |
| 199 | break; |
| 200 | if (posn) |
| 201 | arcs_cmdline[posn++] = ' '; |
| 202 | strcpy(arcs_cmdline + posn, argv[indx]); |
| 203 | posn += nchr; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | add_memory_region(0x0, memsz, BOOT_MEM_RAM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | unsigned long __init prom_free_prom_memory(void) |
| 211 | { |
| 212 | /* Nothing to do! */ |
| 213 | return 0; |
| 214 | } |