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