Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 1 | /* |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 2 | * 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 Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 12 | #include <linux/init.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/ioport.h> |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 15 | #include <linux/delay.h> |
Atsushi Nemoto | 57e386c | 2007-05-01 00:27:58 +0900 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 17 | #include <linux/gpio.h> |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 18 | |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 19 | #include <asm/reboot.h> |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 20 | #include <asm/io.h> |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 21 | #include <asm/txx9/generic.h> |
| 22 | #include <asm/txx9/pci.h> |
Atsushi Nemoto | 22b1d70 | 2008-07-11 00:31:36 +0900 | [diff] [blame] | 23 | #include <asm/txx9/rbtx4938.h> |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 24 | #include <linux/spi/spi.h> |
Atsushi Nemoto | 22b1d70 | 2008-07-11 00:31:36 +0900 | [diff] [blame] | 25 | #include <asm/txx9/spi.h> |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 26 | #include <asm/txx9pio.h> |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 27 | |
Atsushi Nemoto | 7b22609 | 2008-07-14 00:15:04 +0900 | [diff] [blame] | 28 | static void rbtx4938_machine_restart(char *command) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 29 | { |
| 30 | local_irq_disable(); |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 31 | writeb(1, rbtx4938_softresetlock_addr); |
| 32 | writeb(1, rbtx4938_sfvol_addr); |
| 33 | writeb(1, rbtx4938_softreset_addr); |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 34 | /* fallback */ |
| 35 | (*_machine_halt)(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 36 | } |
| 37 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 38 | static void __init rbtx4938_pci_setup(void) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 39 | { |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_PCI |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 41 | int extarb = !(__raw_readq(&tx4938_ccfgptr->ccfg) & TX4938_CCFG_PCIARB); |
| 42 | struct pci_controller *c = &txx9_primary_pcic; |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 43 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 44 | register_pci_controller(c); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 45 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 46 | if (__raw_readq(&tx4938_ccfgptr->ccfg) & TX4938_CCFG_PCI66) |
| 47 | txx9_pci_option = |
| 48 | (txx9_pci_option & ~TXX9_PCI_OPT_CLK_MASK) | |
| 49 | TXX9_PCI_OPT_CLK_66; /* already configured */ |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 50 | |
| 51 | /* Reset PCI Bus */ |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 52 | writeb(0, rbtx4938_pcireset_addr); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 53 | /* Reset PCIC */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 54 | txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST); |
| 55 | if ((txx9_pci_option & TXX9_PCI_OPT_CLK_MASK) == |
| 56 | TXX9_PCI_OPT_CLK_66) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 57 | tx4938_pciclk66_setup(); |
| 58 | mdelay(10); |
| 59 | /* clear PCIC reset */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 60 | txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST); |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 61 | writeb(1, rbtx4938_pcireset_addr); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 62 | iob(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 63 | |
| 64 | tx4938_report_pciclk(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 65 | tx4927_pcic_setup(tx4938_pcicptr, c, extarb); |
| 66 | if ((txx9_pci_option & TXX9_PCI_OPT_CLK_MASK) == |
| 67 | TXX9_PCI_OPT_CLK_AUTO && |
| 68 | txx9_pci66_check(c, 0, 0)) { |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 69 | /* Reset PCI Bus */ |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 70 | writeb(0, rbtx4938_pcireset_addr); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 71 | /* Reset PCIC */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 72 | txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 73 | tx4938_pciclk66_setup(); |
| 74 | mdelay(10); |
| 75 | /* clear PCIC reset */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 76 | txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIRST); |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 77 | writeb(1, rbtx4938_pcireset_addr); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 78 | iob(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 79 | /* Reinitialize PCIC */ |
| 80 | tx4938_report_pciclk(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 81 | tx4927_pcic_setup(tx4938_pcicptr, c, extarb); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 84 | if (__raw_readq(&tx4938_ccfgptr->pcfg) & |
| 85 | (TX4938_PCFG_ETH0_SEL|TX4938_PCFG_ETH1_SEL)) { |
| 86 | /* Reset PCIC1 */ |
| 87 | txx9_set64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIC1RST); |
| 88 | /* PCI1DMD==0 => PCI1CLK==GBUSCLK/2 => PCI66 */ |
| 89 | if (!(__raw_readq(&tx4938_ccfgptr->ccfg) |
| 90 | & TX4938_CCFG_PCI1DMD)) |
| 91 | tx4938_ccfg_set(TX4938_CCFG_PCI1_66); |
| 92 | mdelay(10); |
| 93 | /* clear PCIC1 reset */ |
| 94 | txx9_clear64(&tx4938_ccfgptr->clkctr, TX4938_CLKCTR_PCIC1RST); |
| 95 | tx4938_report_pci1clk(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 96 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 97 | /* mem:64K(max), io:64K(max) (enough for ETH0,ETH1) */ |
| 98 | c = txx9_alloc_pci_controller(NULL, 0, 0x10000, 0, 0x10000); |
| 99 | register_pci_controller(c); |
| 100 | tx4927_pcic_setup(tx4938_pcic1ptr, c, 0); |
| 101 | } |
Atsushi Nemoto | 455cc25 | 2008-07-25 23:01:35 +0900 | [diff] [blame] | 102 | tx4938_setup_pcierr_irq(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 103 | #endif /* CONFIG_PCI */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 104 | } |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 105 | |
| 106 | /* SPI support */ |
| 107 | |
| 108 | /* chip select for SPI devices */ |
| 109 | #define SEEPROM1_CS 7 /* PIO7 */ |
| 110 | #define SEEPROM2_CS 0 /* IOC */ |
| 111 | #define SEEPROM3_CS 1 /* IOC */ |
| 112 | #define SRTC_CS 2 /* IOC */ |
| 113 | |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 114 | static int __init rbtx4938_ethaddr_init(void) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 115 | { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 116 | #ifdef CONFIG_PCI |
Atsushi Nemoto | 2db3015 | 2007-07-02 22:43:06 +0900 | [diff] [blame] | 117 | unsigned char dat[17]; |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 118 | unsigned char sum; |
| 119 | int i; |
| 120 | |
| 121 | /* 0-3: "MAC\0", 4-9:eth0, 10-15:eth1, 16:sum */ |
Atsushi Nemoto | 2db3015 | 2007-07-02 22:43:06 +0900 | [diff] [blame] | 122 | if (spi_eeprom_read(SEEPROM1_CS, 0, dat, sizeof(dat))) { |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 123 | printk(KERN_ERR "seeprom: read error.\n"); |
Atsushi Nemoto | 2db3015 | 2007-07-02 22:43:06 +0900 | [diff] [blame] | 124 | return -ENODEV; |
| 125 | } else { |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 126 | if (strcmp(dat, "MAC") != 0) |
| 127 | printk(KERN_WARNING "seeprom: bad signature.\n"); |
| 128 | for (i = 0, sum = 0; i < sizeof(dat); i++) |
| 129 | sum += dat[i]; |
| 130 | if (sum) |
| 131 | printk(KERN_WARNING "seeprom: bad checksum.\n"); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 132 | } |
Atsushi Nemoto | c49f91f | 2008-07-24 00:25:20 +0900 | [diff] [blame] | 133 | tx4938_ethaddr_init(&dat[4], &dat[4 + 6]); |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 134 | #endif /* CONFIG_PCI */ |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 135 | return 0; |
| 136 | } |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 137 | |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 138 | static void __init rbtx4938_spi_setup(void) |
| 139 | { |
| 140 | /* set SPI_SEL */ |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 141 | txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_SPI_SEL); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | static struct resource rbtx4938_fpga_resource; |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 145 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 146 | static void __init rbtx4938_time_init(void) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 147 | { |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 148 | tx4938_time_init(0); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 151 | static void __init rbtx4938_mem_setup(void) |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 152 | { |
| 153 | unsigned long long pcfg; |
| 154 | char *argptr; |
| 155 | |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 156 | if (txx9_master_clock == 0) |
| 157 | txx9_master_clock = 25000000; /* 25MHz */ |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 158 | |
| 159 | tx4938_setup(); |
| 160 | |
| 161 | #ifdef CONFIG_PCI |
| 162 | txx9_alloc_pci_controller(&txx9_primary_pcic, 0, 0, 0, 0); |
Atsushi Nemoto | 0751752 | 2008-07-24 00:25:15 +0900 | [diff] [blame] | 163 | txx9_board_pcibios_setup = tx4927_pcibios_setup; |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 164 | #else |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 165 | set_io_port_base(RBTX4938_ETHER_BASE); |
| 166 | #endif |
| 167 | |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 168 | tx4938_setup_serial(); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 169 | #ifdef CONFIG_SERIAL_TXX9_CONSOLE |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 170 | argptr = prom_getcmdline(); |
| 171 | if (!strstr(argptr, "console=")) |
| 172 | strcat(argptr, " console=ttyS0,38400"); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 173 | #endif |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 174 | |
| 175 | #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_PIO58_61 |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 176 | printk(KERN_INFO "PIOSEL: disabling both ata and nand selection\n"); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 177 | txx9_clear64(&tx4938_ccfgptr->pcfg, |
| 178 | TX4938_PCFG_NDF_SEL | TX4938_PCFG_ATA_SEL); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 179 | #endif |
| 180 | |
| 181 | #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 182 | printk(KERN_INFO "PIOSEL: enabling nand selection\n"); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 183 | txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL); |
| 184 | txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 185 | #endif |
| 186 | |
| 187 | #ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_ATA |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 188 | printk(KERN_INFO "PIOSEL: enabling ata selection\n"); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 189 | txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL); |
| 190 | txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 191 | #endif |
| 192 | |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 193 | rbtx4938_spi_setup(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 194 | pcfg = ____raw_readq(&tx4938_ccfgptr->pcfg); /* updated */ |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 195 | /* fixup piosel */ |
| 196 | if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) == |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 197 | TX4938_PCFG_ATA_SEL) |
| 198 | writeb((readb(rbtx4938_piosel_addr) & 0x03) | 0x04, |
| 199 | rbtx4938_piosel_addr); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 200 | else if ((pcfg & (TX4938_PCFG_ATA_SEL | TX4938_PCFG_NDF_SEL)) == |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 201 | TX4938_PCFG_NDF_SEL) |
| 202 | writeb((readb(rbtx4938_piosel_addr) & 0x03) | 0x08, |
| 203 | rbtx4938_piosel_addr); |
| 204 | else |
| 205 | writeb(readb(rbtx4938_piosel_addr) & ~(0x08 | 0x04), |
| 206 | rbtx4938_piosel_addr); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 207 | |
| 208 | rbtx4938_fpga_resource.name = "FPGA Registers"; |
| 209 | rbtx4938_fpga_resource.start = CPHYSADDR(RBTX4938_FPGA_REG_ADDR); |
| 210 | rbtx4938_fpga_resource.end = CPHYSADDR(RBTX4938_FPGA_REG_ADDR) + 0xffff; |
| 211 | rbtx4938_fpga_resource.flags = IORESOURCE_MEM | IORESOURCE_BUSY; |
Atsushi Nemoto | 8d795f2 | 2008-07-18 00:43:48 +0900 | [diff] [blame] | 212 | if (request_resource(&txx9_ce_res[2], &rbtx4938_fpga_resource)) |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 213 | printk(KERN_ERR "request resource for fpga failed\n"); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 214 | |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 215 | _machine_restart = rbtx4938_machine_restart; |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 216 | |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 217 | writeb(0xff, rbtx4938_led_addr); |
| 218 | printk(KERN_INFO "RBTX4938 --- FPGA(Rev %02x) DIPSW:%02x,%02x\n", |
| 219 | readb(rbtx4938_fpga_rev_addr), |
| 220 | readb(rbtx4938_dipsw_addr), readb(rbtx4938_bdipsw_addr)); |
Ralf Baechle | 23fbee9 | 2005-07-25 22:45:45 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 223 | static void __init rbtx4938_ne_init(void) |
Atsushi Nemoto | 57e386c | 2007-05-01 00:27:58 +0900 | [diff] [blame] | 224 | { |
| 225 | struct resource res[] = { |
| 226 | { |
| 227 | .start = RBTX4938_RTL_8019_BASE, |
| 228 | .end = RBTX4938_RTL_8019_BASE + 0x20 - 1, |
| 229 | .flags = IORESOURCE_IO, |
| 230 | }, { |
| 231 | .start = RBTX4938_RTL_8019_IRQ, |
| 232 | .flags = IORESOURCE_IRQ, |
| 233 | } |
| 234 | }; |
Atsushi Nemoto | bb72f1f | 2008-07-24 00:25:21 +0900 | [diff] [blame^] | 235 | platform_device_register_simple("ne", -1, res, ARRAY_SIZE(res)); |
Atsushi Nemoto | 57e386c | 2007-05-01 00:27:58 +0900 | [diff] [blame] | 236 | } |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 237 | |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 238 | static DEFINE_SPINLOCK(rbtx4938_spi_gpio_lock); |
| 239 | |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 240 | static void rbtx4938_spi_gpio_set(struct gpio_chip *chip, unsigned int offset, |
| 241 | int value) |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 242 | { |
| 243 | u8 val; |
| 244 | unsigned long flags; |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 245 | spin_lock_irqsave(&rbtx4938_spi_gpio_lock, flags); |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 246 | val = readb(rbtx4938_spics_addr); |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 247 | if (value) |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 248 | val |= 1 << offset; |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 249 | else |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 250 | val &= ~(1 << offset); |
Atsushi Nemoto | 66140c8 | 2008-04-14 21:49:07 +0900 | [diff] [blame] | 251 | writeb(val, rbtx4938_spics_addr); |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 252 | mmiowb(); |
| 253 | spin_unlock_irqrestore(&rbtx4938_spi_gpio_lock, flags); |
| 254 | } |
| 255 | |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 256 | static int rbtx4938_spi_gpio_dir_out(struct gpio_chip *chip, |
| 257 | unsigned int offset, int value) |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 258 | { |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 259 | rbtx4938_spi_gpio_set(chip, offset, value); |
Atsushi Nemoto | 3896b05 | 2007-06-22 23:21:55 +0900 | [diff] [blame] | 260 | return 0; |
| 261 | } |
| 262 | |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 263 | static struct gpio_chip rbtx4938_spi_gpio_chip = { |
| 264 | .set = rbtx4938_spi_gpio_set, |
| 265 | .direction_output = rbtx4938_spi_gpio_dir_out, |
| 266 | .label = "RBTX4938-SPICS", |
| 267 | .base = 16, |
| 268 | .ngpio = 3, |
| 269 | }; |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 270 | |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 271 | static int __init rbtx4938_spi_init(void) |
| 272 | { |
| 273 | struct spi_board_info srtc_info = { |
Atsushi Nemoto | 9f90a03 | 2007-08-19 22:32:10 +0900 | [diff] [blame] | 274 | .modalias = "rtc-rs5c348", |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 275 | .max_speed_hz = 1000000, /* 1.0Mbps @ Vdd 2.0V */ |
| 276 | .bus_num = 0, |
| 277 | .chip_select = 16 + SRTC_CS, |
| 278 | /* Mode 1 (High-Active, Shift-Then-Sample), High Avtive CS */ |
| 279 | .mode = SPI_MODE_1 | SPI_CS_HIGH, |
| 280 | }; |
| 281 | spi_register_board_info(&srtc_info, 1); |
| 282 | spi_eeprom_register(SEEPROM1_CS); |
| 283 | spi_eeprom_register(16 + SEEPROM2_CS); |
| 284 | spi_eeprom_register(16 + SEEPROM3_CS); |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 285 | gpio_request(16 + SRTC_CS, "rtc-rs5c348"); |
| 286 | gpio_direction_output(16 + SRTC_CS, 0); |
| 287 | gpio_request(SEEPROM1_CS, "seeprom1"); |
| 288 | gpio_direction_output(SEEPROM1_CS, 1); |
| 289 | gpio_request(16 + SEEPROM2_CS, "seeprom2"); |
| 290 | gpio_direction_output(16 + SEEPROM2_CS, 1); |
| 291 | gpio_request(16 + SEEPROM3_CS, "seeprom3"); |
| 292 | gpio_direction_output(16 + SEEPROM3_CS, 1); |
Atsushi Nemoto | c49f91f | 2008-07-24 00:25:20 +0900 | [diff] [blame] | 293 | tx4938_spi_init(0); |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 294 | return 0; |
| 295 | } |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 296 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 297 | static void __init rbtx4938_arch_init(void) |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 298 | { |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 299 | gpiochip_add(&rbtx4938_spi_gpio_chip); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 300 | rbtx4938_pci_setup(); |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 301 | rbtx4938_spi_init(); |
Atsushi Nemoto | 4cad154 | 2008-04-05 00:56:09 +0900 | [diff] [blame] | 302 | } |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 303 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 304 | static void __init rbtx4938_device_init(void) |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 305 | { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 306 | rbtx4938_ethaddr_init(); |
| 307 | rbtx4938_ne_init(); |
Atsushi Nemoto | 6831472 | 2008-07-24 00:25:18 +0900 | [diff] [blame] | 308 | tx4938_wdt_init(); |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 309 | } |
Atsushi Nemoto | f74cf6f | 2007-06-22 23:22:06 +0900 | [diff] [blame] | 310 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 311 | struct txx9_board_vec rbtx4938_vec __initdata = { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 312 | .system = "Toshiba RBTX4938", |
| 313 | .prom_init = rbtx4938_prom_init, |
| 314 | .mem_setup = rbtx4938_mem_setup, |
| 315 | .irq_setup = rbtx4938_irq_setup, |
| 316 | .time_init = rbtx4938_time_init, |
| 317 | .device_init = rbtx4938_device_init, |
| 318 | .arch_init = rbtx4938_arch_init, |
| 319 | #ifdef CONFIG_PCI |
| 320 | .pci_map_irq = rbtx4938_pci_map_irq, |
| 321 | #endif |
| 322 | }; |