setup.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /***********************************************************************
  2. *
  3. * Copyright 2001 MontaVista Software Inc.
  4. * Author: MontaVista Software, Inc.
  5. * ahennessy@mvista.com
  6. *
  7. * Based on arch/mips/ddb5xxx/ddb5477/setup.c
  8. *
  9. * Setup file for JMR3927.
  10. *
  11. * Copyright (C) 2000-2001 Toshiba Corporation
  12. *
  13. * This program is free software; you can redistribute it and/or modify it
  14. * under the terms of the GNU General Public License as published by the
  15. * Free Software Foundation; either version 2 of the License, or (at your
  16. * option) any later version.
  17. *
  18. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  19. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  20. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  21. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  23. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  24. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  25. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. *
  29. * You should have received a copy of the GNU General Public License along
  30. * with this program; if not, write to the Free Software Foundation, Inc.,
  31. * 675 Mass Ave, Cambridge, MA 02139, USA.
  32. *
  33. ***********************************************************************
  34. */
  35. #include <linux/init.h>
  36. #include <linux/kernel.h>
  37. #include <linux/kdev_t.h>
  38. #include <linux/types.h>
  39. #include <linux/sched.h>
  40. #include <linux/pci.h>
  41. #include <linux/ide.h>
  42. #include <linux/irq.h>
  43. #include <linux/ioport.h>
  44. #include <linux/param.h> /* for HZ */
  45. #include <linux/delay.h>
  46. #include <linux/pm.h>
  47. #include <linux/platform_device.h>
  48. #ifdef CONFIG_SERIAL_TXX9
  49. #include <linux/tty.h>
  50. #include <linux/serial.h>
  51. #include <linux/serial_core.h>
  52. #endif
  53. #include <asm/addrspace.h>
  54. #include <asm/time.h>
  55. #include <asm/reboot.h>
  56. #include <asm/jmr3927/jmr3927.h>
  57. #include <asm/mipsregs.h>
  58. extern void puts(const char *cp);
  59. /* Tick Timer divider */
  60. #define JMR3927_TIMER_CCD 0 /* 1/2 */
  61. #define JMR3927_TIMER_CLK (JMR3927_IMCLK / (2 << JMR3927_TIMER_CCD))
  62. /* don't enable - see errata */
  63. static int jmr3927_ccfg_toeon;
  64. static inline void do_reset(void)
  65. {
  66. #if 1 /* Resetting PCI bus */
  67. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  68. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR);
  69. (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */
  70. mdelay(1);
  71. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  72. #endif
  73. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR);
  74. }
  75. static void jmr3927_machine_restart(char *command)
  76. {
  77. local_irq_disable();
  78. puts("Rebooting...");
  79. do_reset();
  80. }
  81. static void jmr3927_machine_halt(void)
  82. {
  83. puts("JMR-TX3927 halted.\n");
  84. while (1);
  85. }
  86. static void jmr3927_machine_power_off(void)
  87. {
  88. puts("JMR-TX3927 halted. Please turn off the power.\n");
  89. while (1);
  90. }
  91. static cycle_t jmr3927_hpt_read(void)
  92. {
  93. /* We assume this function is called xtime_lock held. */
  94. return jiffies * (JMR3927_TIMER_CLK / HZ) + jmr3927_tmrptr->trr;
  95. }
  96. static void jmr3927_timer_ack(void)
  97. {
  98. jmr3927_tmrptr->tisr = 0; /* ack interrupt */
  99. }
  100. static void __init jmr3927_time_init(void)
  101. {
  102. clocksource_mips.read = jmr3927_hpt_read;
  103. mips_timer_ack = jmr3927_timer_ack;
  104. mips_hpt_frequency = JMR3927_TIMER_CLK;
  105. }
  106. void __init plat_timer_setup(struct irqaction *irq)
  107. {
  108. jmr3927_tmrptr->cpra = JMR3927_TIMER_CLK / HZ;
  109. jmr3927_tmrptr->itmr = TXx927_TMTITMR_TIIE | TXx927_TMTITMR_TZCE;
  110. jmr3927_tmrptr->ccdr = JMR3927_TIMER_CCD;
  111. jmr3927_tmrptr->tcr =
  112. TXx927_TMTCR_TCE | TXx927_TMTCR_CCDE | TXx927_TMTCR_TMODE_ITVL;
  113. setup_irq(JMR3927_IRQ_TICK, irq);
  114. }
  115. #define DO_WRITE_THROUGH
  116. #define DO_ENABLE_CACHE
  117. extern char * __init prom_getcmdline(void);
  118. static void jmr3927_board_init(void);
  119. extern struct resource pci_io_resource;
  120. extern struct resource pci_mem_resource;
  121. void __init plat_mem_setup(void)
  122. {
  123. char *argptr;
  124. set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO);
  125. board_time_init = jmr3927_time_init;
  126. _machine_restart = jmr3927_machine_restart;
  127. _machine_halt = jmr3927_machine_halt;
  128. pm_power_off = jmr3927_machine_power_off;
  129. /*
  130. * IO/MEM resources.
  131. */
  132. ioport_resource.start = pci_io_resource.start;
  133. ioport_resource.end = pci_io_resource.end;
  134. iomem_resource.start = 0;
  135. iomem_resource.end = 0xffffffff;
  136. /* Reboot on panic */
  137. panic_timeout = 180;
  138. /* cache setup */
  139. {
  140. unsigned int conf;
  141. #ifdef DO_ENABLE_CACHE
  142. int mips_ic_disable = 0, mips_dc_disable = 0;
  143. #else
  144. int mips_ic_disable = 1, mips_dc_disable = 1;
  145. #endif
  146. #ifdef DO_WRITE_THROUGH
  147. int mips_config_cwfon = 0;
  148. int mips_config_wbon = 0;
  149. #else
  150. int mips_config_cwfon = 1;
  151. int mips_config_wbon = 1;
  152. #endif
  153. conf = read_c0_conf();
  154. conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON);
  155. conf |= mips_ic_disable ? 0 : TX39_CONF_ICE;
  156. conf |= mips_dc_disable ? 0 : TX39_CONF_DCE;
  157. conf |= mips_config_wbon ? TX39_CONF_WBON : 0;
  158. conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0;
  159. write_c0_conf(conf);
  160. write_c0_cache(0);
  161. }
  162. /* initialize board */
  163. jmr3927_board_init();
  164. argptr = prom_getcmdline();
  165. if ((argptr = strstr(argptr, "toeon")) != NULL)
  166. jmr3927_ccfg_toeon = 1;
  167. argptr = prom_getcmdline();
  168. if ((argptr = strstr(argptr, "ip=")) == NULL) {
  169. argptr = prom_getcmdline();
  170. strcat(argptr, " ip=bootp");
  171. }
  172. #ifdef CONFIG_SERIAL_TXX9
  173. {
  174. extern int early_serial_txx9_setup(struct uart_port *port);
  175. int i;
  176. struct uart_port req;
  177. for(i = 0; i < 2; i++) {
  178. memset(&req, 0, sizeof(req));
  179. req.line = i;
  180. req.iotype = UPIO_MEM;
  181. req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i);
  182. req.mapbase = TX3927_SIO_REG(i);
  183. req.irq = i == 0 ?
  184. JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1;
  185. if (i == 0)
  186. req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
  187. req.uartclk = JMR3927_IMCLK;
  188. early_serial_txx9_setup(&req);
  189. }
  190. }
  191. #ifdef CONFIG_SERIAL_TXX9_CONSOLE
  192. argptr = prom_getcmdline();
  193. if ((argptr = strstr(argptr, "console=")) == NULL) {
  194. argptr = prom_getcmdline();
  195. strcat(argptr, " console=ttyS1,115200");
  196. }
  197. #endif
  198. #endif
  199. }
  200. static void tx3927_setup(void);
  201. static void __init jmr3927_board_init(void)
  202. {
  203. tx3927_setup();
  204. /* SIO0 DTR on */
  205. jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR);
  206. jmr3927_led_set(0);
  207. printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n",
  208. jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK,
  209. jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK,
  210. jmr3927_dipsw1(), jmr3927_dipsw2(),
  211. jmr3927_dipsw3(), jmr3927_dipsw4());
  212. }
  213. static void __init tx3927_setup(void)
  214. {
  215. int i;
  216. #ifdef CONFIG_PCI
  217. unsigned long mips_pci_io_base = JMR3927_PCIIO;
  218. unsigned long mips_pci_io_size = JMR3927_PCIIO_SIZE;
  219. unsigned long mips_pci_mem_base = JMR3927_PCIMEM;
  220. unsigned long mips_pci_mem_size = JMR3927_PCIMEM_SIZE;
  221. /* for legacy I/O, PCI I/O PCI Bus address must be 0 */
  222. unsigned long mips_pci_io_pciaddr = 0;
  223. #endif
  224. /* SDRAMC are configured by PROM */
  225. /* ROMC */
  226. tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048;
  227. tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8;
  228. tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698;
  229. tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218;
  230. /* CCFG */
  231. /* enable Timeout BusError */
  232. if (jmr3927_ccfg_toeon)
  233. tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE;
  234. /* clear BusErrorOnWrite flag */
  235. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW;
  236. /* Disable PCI snoop */
  237. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP;
  238. #ifdef DO_WRITE_THROUGH
  239. /* Enable PCI SNOOP - with write through only */
  240. tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP;
  241. #endif
  242. /* Pin selection */
  243. tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL;
  244. tx3927_ccfgptr->pcfg |=
  245. TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL |
  246. (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1));
  247. printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n",
  248. tx3927_ccfgptr->crir,
  249. tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg);
  250. /* TMR */
  251. /* disable all timers */
  252. for (i = 0; i < TX3927_NR_TMR; i++) {
  253. tx3927_tmrptr(i)->tcr = TXx927_TMTCR_CRE;
  254. tx3927_tmrptr(i)->tisr = 0;
  255. tx3927_tmrptr(i)->cpra = 0xffffffff;
  256. tx3927_tmrptr(i)->itmr = 0;
  257. tx3927_tmrptr(i)->ccdr = 0;
  258. tx3927_tmrptr(i)->pgmr = 0;
  259. }
  260. /* DMA */
  261. tx3927_dmaptr->mcr = 0;
  262. for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) {
  263. /* reset channel */
  264. tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST;
  265. tx3927_dmaptr->ch[i].ccr = 0;
  266. }
  267. /* enable DMA */
  268. #ifdef __BIG_ENDIAN
  269. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN;
  270. #else
  271. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE;
  272. #endif
  273. #ifdef CONFIG_PCI
  274. /* PCIC */
  275. printk("TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:",
  276. tx3927_pcicptr->did, tx3927_pcicptr->vid,
  277. tx3927_pcicptr->rid);
  278. if (!(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB)) {
  279. printk("External\n");
  280. /* XXX */
  281. } else {
  282. printk("Internal\n");
  283. /* Reset PCI Bus */
  284. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  285. udelay(100);
  286. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI,
  287. JMR3927_IOC_RESET_ADDR);
  288. udelay(100);
  289. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  290. /* Disable External PCI Config. Access */
  291. tx3927_pcicptr->lbc = TX3927_PCIC_LBC_EPCAD;
  292. #ifdef __BIG_ENDIAN
  293. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_IBSE |
  294. TX3927_PCIC_LBC_TIBSE |
  295. TX3927_PCIC_LBC_TMFBSE | TX3927_PCIC_LBC_MSDSE;
  296. #endif
  297. /* LB->PCI mappings */
  298. tx3927_pcicptr->iomas = ~(mips_pci_io_size - 1);
  299. tx3927_pcicptr->ilbioma = mips_pci_io_base;
  300. tx3927_pcicptr->ipbioma = mips_pci_io_pciaddr;
  301. tx3927_pcicptr->mmas = ~(mips_pci_mem_size - 1);
  302. tx3927_pcicptr->ilbmma = mips_pci_mem_base;
  303. tx3927_pcicptr->ipbmma = mips_pci_mem_base;
  304. /* PCI->LB mappings */
  305. tx3927_pcicptr->iobas = 0xffffffff;
  306. tx3927_pcicptr->ioba = 0;
  307. tx3927_pcicptr->tlbioma = 0;
  308. tx3927_pcicptr->mbas = ~(mips_pci_mem_size - 1);
  309. tx3927_pcicptr->mba = 0;
  310. tx3927_pcicptr->tlbmma = 0;
  311. /* Enable Direct mapping Address Space Decoder */
  312. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_ILMDE | TX3927_PCIC_LBC_ILIDE;
  313. /* Clear All Local Bus Status */
  314. tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL;
  315. /* Enable All Local Bus Interrupts */
  316. tx3927_pcicptr->lbim = TX3927_PCIC_LBIM_ALL;
  317. /* Clear All PCI Status Error */
  318. tx3927_pcicptr->pcistat = TX3927_PCIC_PCISTATIM_ALL;
  319. /* Enable All PCI Status Error Interrupts */
  320. tx3927_pcicptr->pcistatim = TX3927_PCIC_PCISTATIM_ALL;
  321. /* PCIC Int => IRC IRQ10 */
  322. tx3927_pcicptr->il = TX3927_IR_PCI;
  323. /* Target Control (per errata) */
  324. tx3927_pcicptr->tc = TX3927_PCIC_TC_OF8E | TX3927_PCIC_TC_IF8E;
  325. /* Enable Bus Arbiter */
  326. tx3927_pcicptr->pbapmc = TX3927_PCIC_PBAPMC_PBAEN;
  327. tx3927_pcicptr->pcicmd = PCI_COMMAND_MASTER |
  328. PCI_COMMAND_MEMORY |
  329. PCI_COMMAND_IO |
  330. PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
  331. }
  332. #endif /* CONFIG_PCI */
  333. /* PIO */
  334. /* PIO[15:12] connected to LEDs */
  335. tx3927_pioptr->dir = 0x0000f000;
  336. tx3927_pioptr->maskcpu = 0;
  337. tx3927_pioptr->maskext = 0;
  338. {
  339. unsigned int conf;
  340. conf = read_c0_conf();
  341. if (!(conf & TX39_CONF_ICE))
  342. printk("TX3927 I-Cache disabled.\n");
  343. if (!(conf & TX39_CONF_DCE))
  344. printk("TX3927 D-Cache disabled.\n");
  345. else if (!(conf & TX39_CONF_WBON))
  346. printk("TX3927 D-Cache WriteThrough.\n");
  347. else if (!(conf & TX39_CONF_CWFON))
  348. printk("TX3927 D-Cache WriteBack.\n");
  349. else
  350. printk("TX3927 D-Cache WriteBack (CWF) .\n");
  351. }
  352. }
  353. /* This trick makes rtc-ds1742 driver usable as is. */
  354. unsigned long __swizzle_addr_b(unsigned long port)
  355. {
  356. if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR)
  357. return port;
  358. port = (port & 0xffff0000) | (port & 0x7fff << 1);
  359. #ifdef __BIG_ENDIAN
  360. return port;
  361. #else
  362. return port | 1;
  363. #endif
  364. }
  365. EXPORT_SYMBOL(__swizzle_addr_b);
  366. static int __init jmr3927_rtc_init(void)
  367. {
  368. static struct resource __initdata res = {
  369. .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE,
  370. .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1,
  371. .flags = IORESOURCE_MEM,
  372. };
  373. struct platform_device *dev;
  374. dev = platform_device_register_simple("ds1742", -1, &res, 1);
  375. return IS_ERR(dev) ? PTR_ERR(dev) : 0;
  376. }
  377. device_initcall(jmr3927_rtc_init);