blob: c99714587ce8788031ee6f77db00a22347f89bf7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Baechlefcdb27a2006-01-18 17:37:07 +00008 * Copyright (C) 1996, 1997, 2004, 05 by Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Copyright (C) 2001, 2002, 2003 by Liam Davies (ldavies@agile.tv)
10 *
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/interrupt.h>
13#include <linux/pci.h>
14#include <linux/init.h>
Ralf Baechlefcdb27a2006-01-18 17:37:07 +000015#include <linux/pm.h>
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000016#include <linux/serial.h>
17#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
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 Baechlec4ed38a2005-02-21 16:18:36 +000026#include <asm/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ralf Baechle11ed6d52006-01-18 23:26:43 +000028#include <asm/mach-cobalt/cobalt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30extern void cobalt_machine_restart(char *command);
31extern void cobalt_machine_halt(void);
32extern void cobalt_machine_power_off(void);
Peter Hortone87ddde2006-02-12 17:10:25 +000033extern void cobalt_early_console(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35int cobalt_board_id;
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037const char *get_system_type(void)
38{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000039 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 Torvalds1da177e2005-04-16 15:20:36 -070049 return "MIPS Cobalt";
50}
51
52static void __init cobalt_timer_setup(struct irqaction *irq)
53{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000054 /* Load timer value for 1KHz (TCLK is 50MHz) */
55 GALILEO_OUTL(50*1000*1000 / 1000, GT_TC0_OFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000057 /* Enable timer */
58 GALILEO_OUTL(GALILEO_ENTC0 | GALILEO_SELTC0, GT_TC_CONTROL_OFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Ralf Baechlec4ed38a2005-02-21 16:18:36 +000060 /* 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 Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67extern struct pci_ops gt64111_pci_ops;
68
69static struct resource cobalt_mem_resource = {
Ralf Baechle5e46c3a2006-06-04 15:14:05 -070070 .start = GT64111_MEM_BASE,
71 .end = GT64111_MEM_END,
72 .name = "PCI memory",
73 .flags = IORESOURCE_MEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
76static struct resource cobalt_io_resource = {
Ralf Baechle5e46c3a2006-06-04 15:14:05 -070077 .start = 0x1000,
78 .end = 0xffff,
79 .name = "PCI I/O",
80 .flags = IORESOURCE_IO
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83static struct resource cobalt_io_resources[] = {
Ralf Baechle5e46c3a2006-06-04 15:14:05 -070084 {
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 Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
112#define COBALT_IO_RESOURCES (sizeof(cobalt_io_resources)/sizeof(struct resource))
113
114static struct pci_controller cobalt_pci_controller = {
115 .pci_ops = &gt64111_pci_ops,
116 .mem_resource = &cobalt_mem_resource,
117 .mem_offset = 0,
118 .io_resource = &cobalt_io_resource,
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000119 .io_offset = 0 - GT64111_IO_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Ralf Baechle2925aba2006-06-18 01:32:22 +0100122void __init plat_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000124 static struct uart_port uart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 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 Baechlefcdb27a2006-01-18 17:37:07 +0000130 pm_power_off = cobalt_machine_power_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 board_timer_setup = cobalt_timer_setup;
133
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000134 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 Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* 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 Baechlec4ed38a2005-02-21 16:18:36 +0000149 printk("Cobalt board ID: %d\n", cobalt_board_id);
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#ifdef CONFIG_PCI
152 register_pci_controller(&cobalt_pci_controller);
153#endif
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000154
155#ifdef CONFIG_SERIAL_8250
156 if (cobalt_board_id > COBALT_BRD_ID_RAQ1) {
157
Peter Hortone87ddde2006-02-12 17:10:25 +0000158#ifdef CONFIG_EARLY_PRINTK
159 cobalt_early_console();
160#endif
161
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000162 uart.line = 0;
163 uart.type = PORT_UNKNOWN;
164 uart.uartclk = 18432000;
165 uart.irq = COBALT_SERIAL_IRQ;
Russell King59a675b2006-02-05 10:52:29 +0000166 uart.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000167 uart.iobase = 0xc800000;
168 uart.iotype = UPIO_PORT;
169
170 early_serial_setup(&uart);
171 }
172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
176 * Prom init. We read our one and only communication with the firmware.
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000177 * Grab the amount of installed memory.
178 * Better boot loaders (CoLo) pass a command line too :-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 */
180
181void __init prom_init(void)
182{
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000183 int narg, indx, posn, nchr;
184 unsigned long memsz;
185 char **argv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 mips_machgroup = MACH_GROUP_COBALT;
188
Ralf Baechlec4ed38a2005-02-21 16:18:36 +0000189 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 Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210unsigned long __init prom_free_prom_memory(void)
211{
212 /* Nothing to do! */
213 return 0;
214}