blob: 3324a70a6b7a017b195eddffd500576386eb7ae4 [file] [log] [blame]
Ralf Baechle23fbee92005-07-25 22:45:45 +00001/*
Ralf Baechle23fbee92005-07-25 22:45:45 +00002 * Setup pointers to hardware-dependent routines.
3 * Copyright (C) 2000-2001 Toshiba Corporation
4 *
5 * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the
6 * terms of the GNU General Public License version 2. This program is
7 * licensed "as is" without any warranty of any kind, whether express
8 * or implied.
9 *
10 * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com)
11 */
Ralf Baechle23fbee92005-07-25 22:45:45 +000012#include <linux/init.h>
13#include <linux/types.h>
14#include <linux/ioport.h>
Ralf Baechle23fbee92005-07-25 22:45:45 +000015#include <linux/delay.h>
16#include <linux/interrupt.h>
17#include <linux/console.h>
Atsushi Nemoto57e386c2007-05-01 00:27:58 +090018#include <linux/platform_device.h>
Atsushi Nemoto4cad1542008-04-05 00:56:09 +090019#include <linux/gpio.h>
Ralf Baechlefcdb27a2006-01-18 17:37:07 +000020
Ralf Baechle23fbee92005-07-25 22:45:45 +000021#include <asm/reboot.h>
Ralf Baechle23fbee92005-07-25 22:45:45 +000022#include <asm/io.h>
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090023#include <asm/txx9/generic.h>
24#include <asm/txx9/pci.h>
Atsushi Nemoto22b1d702008-07-11 00:31:36 +090025#include <asm/txx9/rbtx4938.h>
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +090026#include <linux/spi/spi.h>
Atsushi Nemoto22b1d702008-07-11 00:31:36 +090027#include <asm/txx9/spi.h>
Atsushi Nemoto4cad1542008-04-05 00:56:09 +090028#include <asm/txx9pio.h>
Ralf Baechle23fbee92005-07-25 22:45:45 +000029
Atsushi Nemoto7b226092008-07-14 00:15:04 +090030static void rbtx4938_machine_restart(char *command)
Ralf Baechle23fbee92005-07-25 22:45:45 +000031{
32 local_irq_disable();
Atsushi Nemoto66140c82008-04-14 21:49:07 +090033 writeb(1, rbtx4938_softresetlock_addr);
34 writeb(1, rbtx4938_sfvol_addr);
35 writeb(1, rbtx4938_softreset_addr);
Atsushi Nemotoa49297e2008-07-24 00:25:17 +090036 /* fallback */
37 (*_machine_halt)();
Ralf Baechle23fbee92005-07-25 22:45:45 +000038}
39
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090040static void __init rbtx4938_pci_setup(void)
Ralf Baechle23fbee92005-07-25 22:45:45 +000041{
Ralf Baechle23fbee92005-07-25 22:45:45 +000042#ifdef CONFIG_PCI
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090043 int extarb = !(__raw_readq(&tx4938_ccfgptr->ccfg) & TX4938_CCFG_PCIARB);
44 struct pci_controller *c = &txx9_primary_pcic;
Ralf Baechle23fbee92005-07-25 22:45:45 +000045
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090046 register_pci_controller(c);
Ralf Baechle23fbee92005-07-25 22:45:45 +000047
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090048 if (__raw_readq(&tx4938_ccfgptr->ccfg) & TX4938_CCFG_PCI66)
49 txx9_pci_option =
50 (txx9_pci_option & ~TXX9_PCI_OPT_CLK_MASK) |
51 TXX9_PCI_OPT_CLK_66; /* already configured */
Ralf Baechle23fbee92005-07-25 22:45:45 +000052
53 /* Reset PCI Bus */
Atsushi Nemoto66140c82008-04-14 21:49:07 +090054 writeb(0, rbtx4938_pcireset_addr);
Ralf Baechle23fbee92005-07-25 22:45:45 +000055 /* Reset PCIC */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090056 txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST);
57 if ((txx9_pci_option & TXX9_PCI_OPT_CLK_MASK) ==
58 TXX9_PCI_OPT_CLK_66)
Ralf Baechle23fbee92005-07-25 22:45:45 +000059 tx4938_pciclk66_setup();
60 mdelay(10);
61 /* clear PCIC reset */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090062 txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST);
Atsushi Nemoto66140c82008-04-14 21:49:07 +090063 writeb(1, rbtx4938_pcireset_addr);
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090064 iob();
Ralf Baechle23fbee92005-07-25 22:45:45 +000065
66 tx4938_report_pciclk();
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090067 tx4927_pcic_setup(tx4938_pcicptr, c, extarb);
68 if ((txx9_pci_option & TXX9_PCI_OPT_CLK_MASK) ==
69 TXX9_PCI_OPT_CLK_AUTO &&
70 txx9_pci66_check(c, 0, 0)) {
Ralf Baechle23fbee92005-07-25 22:45:45 +000071 /* Reset PCI Bus */
Atsushi Nemoto66140c82008-04-14 21:49:07 +090072 writeb(0, rbtx4938_pcireset_addr);
Ralf Baechle23fbee92005-07-25 22:45:45 +000073 /* Reset PCIC */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090074 txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST);
Ralf Baechle23fbee92005-07-25 22:45:45 +000075 tx4938_pciclk66_setup();
76 mdelay(10);
77 /* clear PCIC reset */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090078 txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST);
Atsushi Nemoto66140c82008-04-14 21:49:07 +090079 writeb(1, rbtx4938_pcireset_addr);
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090080 iob();
Ralf Baechle23fbee92005-07-25 22:45:45 +000081 /* Reinitialize PCIC */
82 tx4938_report_pciclk();
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090083 tx4927_pcic_setup(tx4938_pcicptr, c, extarb);
Ralf Baechle23fbee92005-07-25 22:45:45 +000084 }
85
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090086 if (__raw_readq(&tx4938_ccfgptr->pcfg) &
87 (TX4938_PCFG_ETH0_SEL|TX4938_PCFG_ETH1_SEL)) {
88 /* Reset PCIC1 */
89 txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIC1RST);
90 /* PCI1DMD==0 => PCI1CLK==GBUSCLK/2 => PCI66 */
91 if (!(__raw_readq(&tx4938_ccfgptr->ccfg)
92 & TX4938_CCFG_PCI1DMD))
93 tx4938_ccfg_set(TX4938_CCFG_PCI1_66);
94 mdelay(10);
95 /* clear PCIC1 reset */
96 txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIC1RST);
97 tx4938_report_pci1clk();
Ralf Baechle23fbee92005-07-25 22:45:45 +000098
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090099 /* mem:64K(max), io:64K(max) (enough for ETH0,ETH1) */
100 c = txx9_alloc_pci_controller(NULL, 0, 0x10000, 0, 0x10000);
101 register_pci_controller(c);
102 tx4927_pcic_setup(tx4938_pcic1ptr, c, 0);
103 }
Atsushi Nemoto455cc252008-07-25 23:01:35 +0900104 tx4938_setup_pcierr_irq();
Ralf Baechle23fbee92005-07-25 22:45:45 +0000105#endif /* CONFIG_PCI */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900106}
Ralf Baechle23fbee92005-07-25 22:45:45 +0000107
108/* SPI support */
109
110/* chip select for SPI devices */
111#define SEEPROM1_CS 7 /* PIO7 */
112#define SEEPROM2_CS 0 /* IOC */
113#define SEEPROM3_CS 1 /* IOC */
114#define SRTC_CS 2 /* IOC */
115
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900116static int __init rbtx4938_ethaddr_init(void)
Ralf Baechle23fbee92005-07-25 22:45:45 +0000117{
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900118#ifdef CONFIG_PCI
Atsushi Nemoto2db30152007-07-02 22:43:06 +0900119 unsigned char dat[17];
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900120 unsigned char sum;
121 int i;
122
123 /* 0-3: "MAC\0", 4-9:eth0, 10-15:eth1, 16:sum */
Atsushi Nemoto2db30152007-07-02 22:43:06 +0900124 if (spi_eeprom_read(SEEPROM1_CS, 0, dat, sizeof(dat))) {
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900125 printk(KERN_ERR "seeprom: read error.\n");
Atsushi Nemoto2db30152007-07-02 22:43:06 +0900126 return -ENODEV;
127 } else {
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900128 if (strcmp(dat, "MAC") != 0)
129 printk(KERN_WARNING "seeprom: bad signature.\n");
130 for (i = 0, sum = 0; i < sizeof(dat); i++)
131 sum += dat[i];
132 if (sum)
133 printk(KERN_WARNING "seeprom: bad checksum.\n");
Ralf Baechle23fbee92005-07-25 22:45:45 +0000134 }
Atsushi Nemotoc49f91f2008-07-24 00:25:20 +0900135 tx4938_ethaddr_init(&dat[4], &dat[4 + 6]);
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900136#endif /* CONFIG_PCI */
Ralf Baechle23fbee92005-07-25 22:45:45 +0000137 return 0;
138}
Ralf Baechle23fbee92005-07-25 22:45:45 +0000139
Ralf Baechle23fbee92005-07-25 22:45:45 +0000140static void __init rbtx4938_spi_setup(void)
141{
142 /* set SPI_SEL */
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900143 txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_SPI_SEL);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000144}
145
146static struct resource rbtx4938_fpga_resource;
Ralf Baechle23fbee92005-07-25 22:45:45 +0000147
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900148static void __init rbtx4938_time_init(void)
Ralf Baechle23fbee92005-07-25 22:45:45 +0000149{
Atsushi Nemoto94a4c322008-07-19 01:51:47 +0900150 tx4938_time_init(0);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000151}
152
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900153static void __init rbtx4938_mem_setup(void)
Ralf Baechle23fbee92005-07-25 22:45:45 +0000154{
155 unsigned long long pcfg;
156 char *argptr;
157
Ralf Baechle23fbee92005-07-25 22:45:45 +0000158 if (txx9_master_clock == 0)
159 txx9_master_clock = 25000000; /* 25MHz */
Atsushi Nemoto94a4c322008-07-19 01:51:47 +0900160
161 tx4938_setup();
162
163#ifdef CONFIG_PCI
164 txx9_alloc_pci_controller(&txx9_primary_pcic, 0, 0, 0, 0);
Atsushi Nemoto07517522008-07-24 00:25:15 +0900165 txx9_board_pcibios_setup = tx4927_pcibios_setup;
Atsushi Nemoto94a4c322008-07-19 01:51:47 +0900166#else
Ralf Baechle23fbee92005-07-25 22:45:45 +0000167 set_io_port_base(RBTX4938_ETHER_BASE);
168#endif
169
Atsushi Nemoto94a4c322008-07-19 01:51:47 +0900170 tx4938_setup_serial();
Ralf Baechle23fbee92005-07-25 22:45:45 +0000171#ifdef CONFIG_SERIAL_TXX9_CONSOLE
172 argptr = prom_getcmdline();
173 if (strstr(argptr, "console=") == NULL) {
174 strcat(argptr, " console=ttyS0,38400");
175 }
176#endif
Ralf Baechle23fbee92005-07-25 22:45:45 +0000177
178#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_PIO58_61
179 printk("PIOSEL: disabling both ata and nand selection\n");
180 local_irq_disable();
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900181 txx9_clear64(&tx4938_ccfgptr->pcfg,
182 TX4938_PCFG_NDF_SEL | TX4938_PCFG_ATA_SEL);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000183#endif
184
185#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND
186 printk("PIOSEL: enabling nand selection\n");
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900187 txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
188 txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000189#endif
190
191#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_ATA
192 printk("PIOSEL: enabling ata selection\n");
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900193 txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
194 txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000195#endif
196
197#ifdef CONFIG_IP_PNP
198 argptr = prom_getcmdline();
199 if (strstr(argptr, "ip=") == NULL) {
200 strcat(argptr, " ip=any");
201 }
202#endif
203
204
205#ifdef CONFIG_FB
206 {
207 conswitchp = &dummy_con;
208 }
209#endif
210
211 rbtx4938_spi_setup();
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900212 pcfg = ____raw_readq(&tx4938_ccfgptr->pcfg); /* updated */
Ralf Baechle23fbee92005-07-25 22:45:45 +0000213 /* fixup piosel */
214 if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) ==
Atsushi Nemoto66140c82008-04-14 21:49:07 +0900215 TX4938_PCFG_ATA_SEL)
216 writeb((readb(rbtx4938_piosel_addr) & 0x03) | 0x04,
217 rbtx4938_piosel_addr);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000218 else if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) ==
Atsushi Nemoto66140c82008-04-14 21:49:07 +0900219 TX4938_PCFG_NDF_SEL)
220 writeb((readb(rbtx4938_piosel_addr) & 0x03) | 0x08,
221 rbtx4938_piosel_addr);
222 else
223 writeb(readb(rbtx4938_piosel_addr) & ~(0x08 | 0x04),
224 rbtx4938_piosel_addr);
Ralf Baechle23fbee92005-07-25 22:45:45 +0000225
226 rbtx4938_fpga_resource.name = "FPGA Registers";
227 rbtx4938_fpga_resource.start = CPHYSADDR(RBTX4938_FPGA_REG_ADDR);
228 rbtx4938_fpga_resource.end = CPHYSADDR(RBTX4938_FPGA_REG_ADDR) + 0xffff;
229 rbtx4938_fpga_resource.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Atsushi Nemoto8d795f22008-07-18 00:43:48 +0900230 if (request_resource(&txx9_ce_res[2], &rbtx4938_fpga_resource))
Ralf Baechle23fbee92005-07-25 22:45:45 +0000231 printk("request resource for fpga failed\n");
232
Ralf Baechle23fbee92005-07-25 22:45:45 +0000233 _machine_restart = rbtx4938_machine_restart;
Ralf Baechle23fbee92005-07-25 22:45:45 +0000234
Atsushi Nemoto66140c82008-04-14 21:49:07 +0900235 writeb(0xff, rbtx4938_led_addr);
236 printk(KERN_INFO "RBTX4938 --- FPGA(Rev %02x) DIPSW:%02x,%02x\n",
237 readb(rbtx4938_fpga_rev_addr),
238 readb(rbtx4938_dipsw_addr), readb(rbtx4938_bdipsw_addr));
Ralf Baechle23fbee92005-07-25 22:45:45 +0000239}
240
Atsushi Nemoto57e386c2007-05-01 00:27:58 +0900241static int __init rbtx4938_ne_init(void)
242{
243 struct resource res[] = {
244 {
245 .start = RBTX4938_RTL_8019_BASE,
246 .end = RBTX4938_RTL_8019_BASE + 0x20 - 1,
247 .flags = IORESOURCE_IO,
248 }, {
249 .start = RBTX4938_RTL_8019_IRQ,
250 .flags = IORESOURCE_IRQ,
251 }
252 };
253 struct platform_device *dev =
254 platform_device_register_simple("ne", -1,
255 res, ARRAY_SIZE(res));
256 return IS_ERR(dev) ? PTR_ERR(dev) : 0;
257}
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900258
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900259static DEFINE_SPINLOCK(rbtx4938_spi_gpio_lock);
260
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900261static void rbtx4938_spi_gpio_set(struct gpio_chip *chip, unsigned int offset,
262 int value)
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900263{
264 u8 val;
265 unsigned long flags;
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900266 spin_lock_irqsave(&rbtx4938_spi_gpio_lock, flags);
Atsushi Nemoto66140c82008-04-14 21:49:07 +0900267 val = readb(rbtx4938_spics_addr);
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900268 if (value)
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900269 val |= 1 << offset;
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900270 else
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900271 val &= ~(1 << offset);
Atsushi Nemoto66140c82008-04-14 21:49:07 +0900272 writeb(val, rbtx4938_spics_addr);
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900273 mmiowb();
274 spin_unlock_irqrestore(&rbtx4938_spi_gpio_lock, flags);
275}
276
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900277static int rbtx4938_spi_gpio_dir_out(struct gpio_chip *chip,
278 unsigned int offset, int value)
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900279{
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900280 rbtx4938_spi_gpio_set(chip, offset, value);
Atsushi Nemoto3896b052007-06-22 23:21:55 +0900281 return 0;
282}
283
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900284static struct gpio_chip rbtx4938_spi_gpio_chip = {
285 .set = rbtx4938_spi_gpio_set,
286 .direction_output = rbtx4938_spi_gpio_dir_out,
287 .label = "RBTX4938-SPICS",
288 .base = 16,
289 .ngpio = 3,
290};
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900291
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900292static int __init rbtx4938_spi_init(void)
293{
294 struct spi_board_info srtc_info = {
Atsushi Nemoto9f90a032007-08-19 22:32:10 +0900295 .modalias = "rtc-rs5c348",
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900296 .max_speed_hz = 1000000, /* 1.0Mbps @ Vdd 2.0V */
297 .bus_num = 0,
298 .chip_select = 16 + SRTC_CS,
299 /* Mode 1 (High-Active, Shift-Then-Sample), High Avtive CS */
300 .mode = SPI_MODE_1 | SPI_CS_HIGH,
301 };
302 spi_register_board_info(&srtc_info, 1);
303 spi_eeprom_register(SEEPROM1_CS);
304 spi_eeprom_register(16 + SEEPROM2_CS);
305 spi_eeprom_register(16 + SEEPROM3_CS);
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900306 gpio_request(16 + SRTC_CS, "rtc-rs5c348");
307 gpio_direction_output(16 + SRTC_CS, 0);
308 gpio_request(SEEPROM1_CS, "seeprom1");
309 gpio_direction_output(SEEPROM1_CS, 1);
310 gpio_request(16 + SEEPROM2_CS, "seeprom2");
311 gpio_direction_output(16 + SEEPROM2_CS, 1);
312 gpio_request(16 + SEEPROM3_CS, "seeprom3");
313 gpio_direction_output(16 + SEEPROM3_CS, 1);
Atsushi Nemotoc49f91f2008-07-24 00:25:20 +0900314 tx4938_spi_init(0);
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900315 return 0;
316}
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900317
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900318static void __init rbtx4938_arch_init(void)
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900319{
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900320 gpiochip_add(&rbtx4938_spi_gpio_chip);
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900321 rbtx4938_pci_setup();
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900322 rbtx4938_spi_init();
Atsushi Nemoto4cad1542008-04-05 00:56:09 +0900323}
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900324
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900325static void __init rbtx4938_device_init(void)
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900326{
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900327 rbtx4938_ethaddr_init();
328 rbtx4938_ne_init();
Atsushi Nemoto68314722008-07-24 00:25:18 +0900329 tx4938_wdt_init();
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900330}
Atsushi Nemotof74cf6f2007-06-22 23:22:06 +0900331
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900332struct txx9_board_vec rbtx4938_vec __initdata = {
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900333 .system = "Toshiba RBTX4938",
334 .prom_init = rbtx4938_prom_init,
335 .mem_setup = rbtx4938_mem_setup,
336 .irq_setup = rbtx4938_irq_setup,
337 .time_init = rbtx4938_time_init,
338 .device_init = rbtx4938_device_init,
339 .arch_init = rbtx4938_arch_init,
340#ifdef CONFIG_PCI
341 .pci_map_irq = rbtx4938_pci_map_irq,
342#endif
343};