setup.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it
  3. * under the terms of the GNU General Public License as published by the
  4. * Free Software Foundation; either version 2 of the License, or (at your
  5. * option) any later version.
  6. *
  7. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  8. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  10. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  11. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  12. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  13. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  14. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  15. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  16. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 675 Mass Ave, Cambridge, MA 02139, USA.
  21. *
  22. * Copyright 2001 MontaVista Software Inc.
  23. * Author: MontaVista Software, Inc.
  24. * ahennessy@mvista.com
  25. *
  26. * Copyright (C) 2000-2001 Toshiba Corporation
  27. * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
  28. */
  29. #include <linux/init.h>
  30. #include <linux/kernel.h>
  31. #include <linux/types.h>
  32. #include <linux/ioport.h>
  33. #include <linux/delay.h>
  34. #include <linux/platform_device.h>
  35. #include <linux/gpio.h>
  36. #ifdef CONFIG_SERIAL_TXX9
  37. #include <linux/serial_core.h>
  38. #endif
  39. #include <asm/txx9tmr.h>
  40. #include <asm/txx9pio.h>
  41. #include <asm/reboot.h>
  42. #include <asm/txx9/generic.h>
  43. #include <asm/txx9/pci.h>
  44. #include <asm/txx9/jmr3927.h>
  45. #include <asm/mipsregs.h>
  46. /* don't enable - see errata */
  47. static int jmr3927_ccfg_toeon;
  48. static void jmr3927_machine_restart(char *command)
  49. {
  50. local_irq_disable();
  51. #if 1 /* Resetting PCI bus */
  52. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  53. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR);
  54. (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */
  55. mdelay(1);
  56. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  57. #endif
  58. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR);
  59. /* fallback */
  60. (*_machine_halt)();
  61. }
  62. static void __init jmr3927_time_init(void)
  63. {
  64. txx9_clockevent_init(TX3927_TMR_REG(0),
  65. JMR3927_IRQ_IRC_TMR(0),
  66. JMR3927_IMCLK);
  67. txx9_clocksource_init(TX3927_TMR_REG(1), JMR3927_IMCLK);
  68. }
  69. #define DO_WRITE_THROUGH
  70. #define DO_ENABLE_CACHE
  71. static void jmr3927_board_init(void);
  72. static void __init jmr3927_mem_setup(void)
  73. {
  74. char *argptr;
  75. set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO);
  76. _machine_restart = jmr3927_machine_restart;
  77. /* Reboot on panic */
  78. panic_timeout = 180;
  79. /* cache setup */
  80. {
  81. unsigned int conf;
  82. #ifdef DO_ENABLE_CACHE
  83. int mips_ic_disable = 0, mips_dc_disable = 0;
  84. #else
  85. int mips_ic_disable = 1, mips_dc_disable = 1;
  86. #endif
  87. #ifdef DO_WRITE_THROUGH
  88. int mips_config_cwfon = 0;
  89. int mips_config_wbon = 0;
  90. #else
  91. int mips_config_cwfon = 1;
  92. int mips_config_wbon = 1;
  93. #endif
  94. conf = read_c0_conf();
  95. conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON);
  96. conf |= mips_ic_disable ? 0 : TX39_CONF_ICE;
  97. conf |= mips_dc_disable ? 0 : TX39_CONF_DCE;
  98. conf |= mips_config_wbon ? TX39_CONF_WBON : 0;
  99. conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0;
  100. write_c0_conf(conf);
  101. write_c0_cache(0);
  102. }
  103. /* initialize board */
  104. jmr3927_board_init();
  105. argptr = prom_getcmdline();
  106. if ((argptr = strstr(argptr, "toeon")) != NULL)
  107. jmr3927_ccfg_toeon = 1;
  108. argptr = prom_getcmdline();
  109. if ((argptr = strstr(argptr, "ip=")) == NULL) {
  110. argptr = prom_getcmdline();
  111. strcat(argptr, " ip=bootp");
  112. }
  113. #ifdef CONFIG_SERIAL_TXX9
  114. {
  115. extern int early_serial_txx9_setup(struct uart_port *port);
  116. int i;
  117. struct uart_port req;
  118. for(i = 0; i < 2; i++) {
  119. memset(&req, 0, sizeof(req));
  120. req.line = i;
  121. req.iotype = UPIO_MEM;
  122. req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i);
  123. req.mapbase = TX3927_SIO_REG(i);
  124. req.irq = i == 0 ?
  125. JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1;
  126. if (i == 0)
  127. req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
  128. req.uartclk = JMR3927_IMCLK;
  129. early_serial_txx9_setup(&req);
  130. }
  131. }
  132. #ifdef CONFIG_SERIAL_TXX9_CONSOLE
  133. argptr = prom_getcmdline();
  134. if ((argptr = strstr(argptr, "console=")) == NULL) {
  135. argptr = prom_getcmdline();
  136. strcat(argptr, " console=ttyS1,115200");
  137. }
  138. #endif
  139. #endif
  140. }
  141. static void tx3927_setup(void);
  142. static void __init jmr3927_pci_setup(void)
  143. {
  144. #ifdef CONFIG_PCI
  145. int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB);
  146. struct pci_controller *c;
  147. c = txx9_alloc_pci_controller(&txx9_primary_pcic,
  148. JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE,
  149. JMR3927_PCIIO, JMR3927_PCIIO_SIZE);
  150. register_pci_controller(c);
  151. if (!extarb) {
  152. /* Reset PCI Bus */
  153. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  154. udelay(100);
  155. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI,
  156. JMR3927_IOC_RESET_ADDR);
  157. udelay(100);
  158. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  159. }
  160. tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb);
  161. tx3927_setup_pcierr_irq();
  162. #endif /* CONFIG_PCI */
  163. }
  164. static void __init jmr3927_board_init(void)
  165. {
  166. tx3927_setup();
  167. jmr3927_pci_setup();
  168. /* SIO0 DTR on */
  169. jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR);
  170. jmr3927_led_set(0);
  171. printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n",
  172. jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK,
  173. jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK,
  174. jmr3927_dipsw1(), jmr3927_dipsw2(),
  175. jmr3927_dipsw3(), jmr3927_dipsw4());
  176. }
  177. static void __init tx3927_setup(void)
  178. {
  179. int i;
  180. txx9_cpu_clock = JMR3927_CORECLK;
  181. txx9_gbus_clock = JMR3927_GBUSCLK;
  182. /* SDRAMC are configured by PROM */
  183. /* ROMC */
  184. tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048;
  185. tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8;
  186. tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698;
  187. tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218;
  188. /* CCFG */
  189. /* enable Timeout BusError */
  190. if (jmr3927_ccfg_toeon)
  191. tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE;
  192. /* clear BusErrorOnWrite flag */
  193. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW;
  194. /* Disable PCI snoop */
  195. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP;
  196. /* do reset on watchdog */
  197. tx3927_ccfgptr->ccfg |= TX3927_CCFG_WR;
  198. #ifdef DO_WRITE_THROUGH
  199. /* Enable PCI SNOOP - with write through only */
  200. tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP;
  201. #endif
  202. /* Pin selection */
  203. tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL;
  204. tx3927_ccfgptr->pcfg |=
  205. TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL |
  206. (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1));
  207. printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n",
  208. tx3927_ccfgptr->crir,
  209. tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg);
  210. /* TMR */
  211. for (i = 0; i < TX3927_NR_TMR; i++)
  212. txx9_tmr_init(TX3927_TMR_REG(i));
  213. /* DMA */
  214. tx3927_dmaptr->mcr = 0;
  215. for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) {
  216. /* reset channel */
  217. tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST;
  218. tx3927_dmaptr->ch[i].ccr = 0;
  219. }
  220. /* enable DMA */
  221. #ifdef __BIG_ENDIAN
  222. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN;
  223. #else
  224. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE;
  225. #endif
  226. /* PIO */
  227. /* PIO[15:12] connected to LEDs */
  228. __raw_writel(0x0000f000, &tx3927_pioptr->dir);
  229. __raw_writel(0, &tx3927_pioptr->maskcpu);
  230. __raw_writel(0, &tx3927_pioptr->maskext);
  231. txx9_gpio_init(TX3927_PIO_REG, 0, 16);
  232. gpio_request(11, "dipsw1");
  233. gpio_request(10, "dipsw2");
  234. {
  235. unsigned int conf;
  236. conf = read_c0_conf();
  237. if (!(conf & TX39_CONF_ICE))
  238. printk("TX3927 I-Cache disabled.\n");
  239. if (!(conf & TX39_CONF_DCE))
  240. printk("TX3927 D-Cache disabled.\n");
  241. else if (!(conf & TX39_CONF_WBON))
  242. printk("TX3927 D-Cache WriteThrough.\n");
  243. else if (!(conf & TX39_CONF_CWFON))
  244. printk("TX3927 D-Cache WriteBack.\n");
  245. else
  246. printk("TX3927 D-Cache WriteBack (CWF) .\n");
  247. }
  248. }
  249. /* This trick makes rtc-ds1742 driver usable as is. */
  250. static unsigned long jmr3927_swizzle_addr_b(unsigned long port)
  251. {
  252. if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR)
  253. return port;
  254. port = (port & 0xffff0000) | (port & 0x7fff << 1);
  255. #ifdef __BIG_ENDIAN
  256. return port;
  257. #else
  258. return port | 1;
  259. #endif
  260. }
  261. static int __init jmr3927_rtc_init(void)
  262. {
  263. static struct resource __initdata res = {
  264. .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE,
  265. .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1,
  266. .flags = IORESOURCE_MEM,
  267. };
  268. struct platform_device *dev;
  269. dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1);
  270. return IS_ERR(dev) ? PTR_ERR(dev) : 0;
  271. }
  272. static void __init tx3927_wdt_init(void)
  273. {
  274. txx9_wdt_init(TX3927_TMR_REG(2));
  275. }
  276. static void __init jmr3927_device_init(void)
  277. {
  278. __swizzle_addr_b = jmr3927_swizzle_addr_b;
  279. jmr3927_rtc_init();
  280. tx3927_wdt_init();
  281. }
  282. struct txx9_board_vec jmr3927_vec __initdata = {
  283. .system = "Toshiba JMR_TX3927",
  284. .prom_init = jmr3927_prom_init,
  285. .mem_setup = jmr3927_mem_setup,
  286. .irq_setup = jmr3927_irq_setup,
  287. .time_init = jmr3927_time_init,
  288. .device_init = jmr3927_device_init,
  289. #ifdef CONFIG_PCI
  290. .pci_map_irq = jmr3927_pci_map_irq,
  291. #endif
  292. };