setup.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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/pm.h>
  35. #include <linux/platform_device.h>
  36. #include <linux/clk.h>
  37. #include <linux/gpio.h>
  38. #ifdef CONFIG_SERIAL_TXX9
  39. #include <linux/serial_core.h>
  40. #endif
  41. #include <asm/txx9tmr.h>
  42. #include <asm/txx9pio.h>
  43. #include <asm/reboot.h>
  44. #include <asm/txx9/pci.h>
  45. #include <asm/txx9/jmr3927.h>
  46. #include <asm/mipsregs.h>
  47. extern void puts(const char *cp);
  48. /* don't enable - see errata */
  49. static int jmr3927_ccfg_toeon;
  50. static inline void do_reset(void)
  51. {
  52. #if 1 /* Resetting PCI bus */
  53. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  54. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR);
  55. (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */
  56. mdelay(1);
  57. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  58. #endif
  59. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR);
  60. }
  61. static void jmr3927_machine_restart(char *command)
  62. {
  63. local_irq_disable();
  64. puts("Rebooting...");
  65. do_reset();
  66. }
  67. static void jmr3927_machine_halt(void)
  68. {
  69. puts("JMR-TX3927 halted.\n");
  70. while (1);
  71. }
  72. static void jmr3927_machine_power_off(void)
  73. {
  74. puts("JMR-TX3927 halted. Please turn off the power.\n");
  75. while (1);
  76. }
  77. void __init plat_time_init(void)
  78. {
  79. txx9_clockevent_init(TX3927_TMR_REG(0),
  80. TXX9_IRQ_BASE + JMR3927_IRQ_IRC_TMR(0),
  81. JMR3927_IMCLK);
  82. txx9_clocksource_init(TX3927_TMR_REG(1), JMR3927_IMCLK);
  83. }
  84. #define DO_WRITE_THROUGH
  85. #define DO_ENABLE_CACHE
  86. extern char * __init prom_getcmdline(void);
  87. static void jmr3927_board_init(void);
  88. void __init plat_mem_setup(void)
  89. {
  90. char *argptr;
  91. set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO);
  92. _machine_restart = jmr3927_machine_restart;
  93. _machine_halt = jmr3927_machine_halt;
  94. pm_power_off = jmr3927_machine_power_off;
  95. /*
  96. * IO/MEM resources.
  97. */
  98. ioport_resource.start = 0;
  99. ioport_resource.end = 0xffffffff;
  100. iomem_resource.start = 0;
  101. iomem_resource.end = 0xffffffff;
  102. /* Reboot on panic */
  103. panic_timeout = 180;
  104. /* cache setup */
  105. {
  106. unsigned int conf;
  107. #ifdef DO_ENABLE_CACHE
  108. int mips_ic_disable = 0, mips_dc_disable = 0;
  109. #else
  110. int mips_ic_disable = 1, mips_dc_disable = 1;
  111. #endif
  112. #ifdef DO_WRITE_THROUGH
  113. int mips_config_cwfon = 0;
  114. int mips_config_wbon = 0;
  115. #else
  116. int mips_config_cwfon = 1;
  117. int mips_config_wbon = 1;
  118. #endif
  119. conf = read_c0_conf();
  120. conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON);
  121. conf |= mips_ic_disable ? 0 : TX39_CONF_ICE;
  122. conf |= mips_dc_disable ? 0 : TX39_CONF_DCE;
  123. conf |= mips_config_wbon ? TX39_CONF_WBON : 0;
  124. conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0;
  125. write_c0_conf(conf);
  126. write_c0_cache(0);
  127. }
  128. /* initialize board */
  129. jmr3927_board_init();
  130. argptr = prom_getcmdline();
  131. if ((argptr = strstr(argptr, "toeon")) != NULL)
  132. jmr3927_ccfg_toeon = 1;
  133. argptr = prom_getcmdline();
  134. if ((argptr = strstr(argptr, "ip=")) == NULL) {
  135. argptr = prom_getcmdline();
  136. strcat(argptr, " ip=bootp");
  137. }
  138. #ifdef CONFIG_SERIAL_TXX9
  139. {
  140. extern int early_serial_txx9_setup(struct uart_port *port);
  141. int i;
  142. struct uart_port req;
  143. for(i = 0; i < 2; i++) {
  144. memset(&req, 0, sizeof(req));
  145. req.line = i;
  146. req.iotype = UPIO_MEM;
  147. req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i);
  148. req.mapbase = TX3927_SIO_REG(i);
  149. req.irq = i == 0 ?
  150. JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1;
  151. if (i == 0)
  152. req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
  153. req.uartclk = JMR3927_IMCLK;
  154. early_serial_txx9_setup(&req);
  155. }
  156. }
  157. #ifdef CONFIG_SERIAL_TXX9_CONSOLE
  158. argptr = prom_getcmdline();
  159. if ((argptr = strstr(argptr, "console=")) == NULL) {
  160. argptr = prom_getcmdline();
  161. strcat(argptr, " console=ttyS1,115200");
  162. }
  163. #endif
  164. #endif
  165. }
  166. static void tx3927_setup(void);
  167. static void __init jmr3927_pci_setup(void)
  168. {
  169. #ifdef CONFIG_PCI
  170. int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB);
  171. struct pci_controller *c;
  172. c = txx9_alloc_pci_controller(&txx9_primary_pcic,
  173. JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE,
  174. JMR3927_PCIIO, JMR3927_PCIIO_SIZE);
  175. register_pci_controller(c);
  176. if (!extarb) {
  177. /* Reset PCI Bus */
  178. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  179. udelay(100);
  180. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI,
  181. JMR3927_IOC_RESET_ADDR);
  182. udelay(100);
  183. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  184. }
  185. tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb);
  186. #endif /* CONFIG_PCI */
  187. }
  188. static void __init jmr3927_board_init(void)
  189. {
  190. tx3927_setup();
  191. jmr3927_pci_setup();
  192. /* SIO0 DTR on */
  193. jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR);
  194. jmr3927_led_set(0);
  195. printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n",
  196. jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK,
  197. jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK,
  198. jmr3927_dipsw1(), jmr3927_dipsw2(),
  199. jmr3927_dipsw3(), jmr3927_dipsw4());
  200. }
  201. static void __init tx3927_setup(void)
  202. {
  203. int i;
  204. /* SDRAMC are configured by PROM */
  205. /* ROMC */
  206. tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048;
  207. tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8;
  208. tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698;
  209. tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218;
  210. /* CCFG */
  211. /* enable Timeout BusError */
  212. if (jmr3927_ccfg_toeon)
  213. tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE;
  214. /* clear BusErrorOnWrite flag */
  215. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW;
  216. /* Disable PCI snoop */
  217. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP;
  218. /* do reset on watchdog */
  219. tx3927_ccfgptr->ccfg |= TX3927_CCFG_WR;
  220. #ifdef DO_WRITE_THROUGH
  221. /* Enable PCI SNOOP - with write through only */
  222. tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP;
  223. #endif
  224. /* Pin selection */
  225. tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL;
  226. tx3927_ccfgptr->pcfg |=
  227. TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL |
  228. (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1));
  229. printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n",
  230. tx3927_ccfgptr->crir,
  231. tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg);
  232. /* TMR */
  233. for (i = 0; i < TX3927_NR_TMR; i++)
  234. txx9_tmr_init(TX3927_TMR_REG(i));
  235. /* DMA */
  236. tx3927_dmaptr->mcr = 0;
  237. for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) {
  238. /* reset channel */
  239. tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST;
  240. tx3927_dmaptr->ch[i].ccr = 0;
  241. }
  242. /* enable DMA */
  243. #ifdef __BIG_ENDIAN
  244. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN;
  245. #else
  246. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE;
  247. #endif
  248. /* PIO */
  249. /* PIO[15:12] connected to LEDs */
  250. __raw_writel(0x0000f000, &tx3927_pioptr->dir);
  251. __raw_writel(0, &tx3927_pioptr->maskcpu);
  252. __raw_writel(0, &tx3927_pioptr->maskext);
  253. txx9_gpio_init(TX3927_PIO_REG, 0, 16);
  254. gpio_request(11, "dipsw1");
  255. gpio_request(10, "dipsw2");
  256. {
  257. unsigned int conf;
  258. conf = read_c0_conf();
  259. if (!(conf & TX39_CONF_ICE))
  260. printk("TX3927 I-Cache disabled.\n");
  261. if (!(conf & TX39_CONF_DCE))
  262. printk("TX3927 D-Cache disabled.\n");
  263. else if (!(conf & TX39_CONF_WBON))
  264. printk("TX3927 D-Cache WriteThrough.\n");
  265. else if (!(conf & TX39_CONF_CWFON))
  266. printk("TX3927 D-Cache WriteBack.\n");
  267. else
  268. printk("TX3927 D-Cache WriteBack (CWF) .\n");
  269. }
  270. }
  271. /* This trick makes rtc-ds1742 driver usable as is. */
  272. unsigned long __swizzle_addr_b(unsigned long port)
  273. {
  274. if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR)
  275. return port;
  276. port = (port & 0xffff0000) | (port & 0x7fff << 1);
  277. #ifdef __BIG_ENDIAN
  278. return port;
  279. #else
  280. return port | 1;
  281. #endif
  282. }
  283. EXPORT_SYMBOL(__swizzle_addr_b);
  284. static int __init jmr3927_rtc_init(void)
  285. {
  286. static struct resource __initdata res = {
  287. .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE,
  288. .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1,
  289. .flags = IORESOURCE_MEM,
  290. };
  291. struct platform_device *dev;
  292. dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1);
  293. return IS_ERR(dev) ? PTR_ERR(dev) : 0;
  294. }
  295. device_initcall(jmr3927_rtc_init);
  296. /* Watchdog support */
  297. static int __init txx9_wdt_init(unsigned long base)
  298. {
  299. struct resource res = {
  300. .start = base,
  301. .end = base + 0x100 - 1,
  302. .flags = IORESOURCE_MEM,
  303. };
  304. struct platform_device *dev =
  305. platform_device_register_simple("txx9wdt", -1, &res, 1);
  306. return IS_ERR(dev) ? PTR_ERR(dev) : 0;
  307. }
  308. static int __init jmr3927_wdt_init(void)
  309. {
  310. return txx9_wdt_init(TX3927_TMR_REG(2));
  311. }
  312. device_initcall(jmr3927_wdt_init);
  313. /* Minimum CLK support */
  314. struct clk *clk_get(struct device *dev, const char *id)
  315. {
  316. if (!strcmp(id, "imbus_clk"))
  317. return (struct clk *)JMR3927_IMCLK;
  318. return ERR_PTR(-ENOENT);
  319. }
  320. EXPORT_SYMBOL(clk_get);
  321. int clk_enable(struct clk *clk)
  322. {
  323. return 0;
  324. }
  325. EXPORT_SYMBOL(clk_enable);
  326. void clk_disable(struct clk *clk)
  327. {
  328. }
  329. EXPORT_SYMBOL(clk_disable);
  330. unsigned long clk_get_rate(struct clk *clk)
  331. {
  332. return (unsigned long)clk;
  333. }
  334. EXPORT_SYMBOL(clk_get_rate);
  335. void clk_put(struct clk *clk)
  336. {
  337. }
  338. EXPORT_SYMBOL(clk_put);