setup.c 11 KB

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