setup.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  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/config.h>
  36. #include <linux/init.h>
  37. #include <linux/kernel.h>
  38. #include <linux/kdev_t.h>
  39. #include <linux/types.h>
  40. #include <linux/sched.h>
  41. #include <linux/pci.h>
  42. #include <linux/ide.h>
  43. #include <linux/ioport.h>
  44. #include <linux/param.h> /* for HZ */
  45. #include <linux/delay.h>
  46. #include <linux/pm.h>
  47. #ifdef CONFIG_SERIAL_TXX9
  48. #include <linux/tty.h>
  49. #include <linux/serial.h>
  50. #include <linux/serial_core.h>
  51. #endif
  52. #include <asm/addrspace.h>
  53. #include <asm/time.h>
  54. #include <asm/bcache.h>
  55. #include <asm/irq.h>
  56. #include <asm/reboot.h>
  57. #include <asm/gdb-stub.h>
  58. #include <asm/jmr3927/jmr3927.h>
  59. #include <asm/mipsregs.h>
  60. #include <asm/traps.h>
  61. extern void puts(unsigned char *cp);
  62. /* Tick Timer divider */
  63. #define JMR3927_TIMER_CCD 0 /* 1/2 */
  64. #define JMR3927_TIMER_CLK (JMR3927_IMCLK / (2 << JMR3927_TIMER_CCD))
  65. unsigned char led_state = 0xf;
  66. struct {
  67. struct resource ram0;
  68. struct resource ram1;
  69. struct resource pcimem;
  70. struct resource iob;
  71. struct resource ioc;
  72. struct resource pciio;
  73. struct resource jmy1394;
  74. struct resource rom1;
  75. struct resource rom0;
  76. struct resource sio0;
  77. struct resource sio1;
  78. } jmr3927_resources = {
  79. { "RAM0", 0, 0x01FFFFFF, IORESOURCE_MEM },
  80. { "RAM1", 0x02000000, 0x03FFFFFF, IORESOURCE_MEM },
  81. { "PCIMEM", 0x08000000, 0x07FFFFFF, IORESOURCE_MEM },
  82. { "IOB", 0x10000000, 0x13FFFFFF },
  83. { "IOC", 0x14000000, 0x14FFFFFF },
  84. { "PCIIO", 0x15000000, 0x15FFFFFF },
  85. { "JMY1394", 0x1D000000, 0x1D3FFFFF },
  86. { "ROM1", 0x1E000000, 0x1E3FFFFF },
  87. { "ROM0", 0x1FC00000, 0x1FFFFFFF },
  88. { "SIO0", 0xFFFEF300, 0xFFFEF3FF },
  89. { "SIO1", 0xFFFEF400, 0xFFFEF4FF },
  90. };
  91. /* don't enable - see errata */
  92. int jmr3927_ccfg_toeon = 0;
  93. static inline void do_reset(void)
  94. {
  95. #ifdef CONFIG_TC35815
  96. extern void tc35815_killall(void);
  97. tc35815_killall();
  98. #endif
  99. #if 1 /* Resetting PCI bus */
  100. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  101. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR);
  102. (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */
  103. mdelay(1);
  104. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  105. #endif
  106. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR);
  107. }
  108. static void jmr3927_machine_restart(char *command)
  109. {
  110. local_irq_disable();
  111. puts("Rebooting...");
  112. do_reset();
  113. }
  114. static void jmr3927_machine_halt(void)
  115. {
  116. puts("JMR-TX3927 halted.\n");
  117. while (1);
  118. }
  119. static void jmr3927_machine_power_off(void)
  120. {
  121. puts("JMR-TX3927 halted. Please turn off the power.\n");
  122. while (1);
  123. }
  124. #define USE_RTC_DS1742
  125. #ifdef USE_RTC_DS1742
  126. extern void rtc_ds1742_init(unsigned long base);
  127. #endif
  128. static void __init jmr3927_time_init(void)
  129. {
  130. #ifdef USE_RTC_DS1742
  131. if (jmr3927_have_nvram()) {
  132. rtc_ds1742_init(JMR3927_IOC_NVRAMB_ADDR);
  133. }
  134. #endif
  135. }
  136. unsigned long jmr3927_do_gettimeoffset(void);
  137. extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
  138. static void __init jmr3927_timer_setup(struct irqaction *irq)
  139. {
  140. do_gettimeoffset = jmr3927_do_gettimeoffset;
  141. jmr3927_tmrptr->cpra = JMR3927_TIMER_CLK / HZ;
  142. jmr3927_tmrptr->itmr = TXx927_TMTITMR_TIIE | TXx927_TMTITMR_TZCE;
  143. jmr3927_tmrptr->ccdr = JMR3927_TIMER_CCD;
  144. jmr3927_tmrptr->tcr =
  145. TXx927_TMTCR_TCE | TXx927_TMTCR_CCDE | TXx927_TMTCR_TMODE_ITVL;
  146. setup_irq(JMR3927_IRQ_TICK, irq);
  147. }
  148. #define USECS_PER_JIFFY (1000000/HZ)
  149. unsigned long jmr3927_do_gettimeoffset(void)
  150. {
  151. unsigned long count;
  152. unsigned long res = 0;
  153. /* MUST read TRR before TISR. */
  154. count = jmr3927_tmrptr->trr;
  155. if (jmr3927_tmrptr->tisr & TXx927_TMTISR_TIIS) {
  156. /* timer interrupt is pending. use Max value. */
  157. res = USECS_PER_JIFFY - 1;
  158. } else {
  159. /* convert to usec */
  160. /* res = count / (JMR3927_TIMER_CLK / 1000000); */
  161. res = (count << 7) / ((JMR3927_TIMER_CLK << 7) / 1000000);
  162. /*
  163. * Due to possible jiffies inconsistencies, we need to check
  164. * the result so that we'll get a timer that is monotonic.
  165. */
  166. if (res >= USECS_PER_JIFFY)
  167. res = USECS_PER_JIFFY-1;
  168. }
  169. return res;
  170. }
  171. //#undef DO_WRITE_THROUGH
  172. #define DO_WRITE_THROUGH
  173. #define DO_ENABLE_CACHE
  174. extern char * __init prom_getcmdline(void);
  175. static void jmr3927_board_init(void);
  176. extern struct resource pci_io_resource;
  177. extern struct resource pci_mem_resource;
  178. void __init plat_setup(void)
  179. {
  180. char *argptr;
  181. set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO);
  182. board_time_init = jmr3927_time_init;
  183. board_timer_setup = jmr3927_timer_setup;
  184. _machine_restart = jmr3927_machine_restart;
  185. _machine_halt = jmr3927_machine_halt;
  186. pm_power_off = jmr3927_machine_power_off;
  187. /*
  188. * IO/MEM resources.
  189. */
  190. ioport_resource.start = pci_io_resource.start;
  191. ioport_resource.end = pci_io_resource.end;
  192. iomem_resource.start = 0;
  193. iomem_resource.end = 0xffffffff;
  194. /* Reboot on panic */
  195. panic_timeout = 180;
  196. {
  197. unsigned int conf;
  198. conf = read_c0_conf();
  199. }
  200. #if 1
  201. /* cache setup */
  202. {
  203. unsigned int conf;
  204. #ifdef DO_ENABLE_CACHE
  205. int mips_ic_disable = 0, mips_dc_disable = 0;
  206. #else
  207. int mips_ic_disable = 1, mips_dc_disable = 1;
  208. #endif
  209. #ifdef DO_WRITE_THROUGH
  210. int mips_config_cwfon = 0;
  211. int mips_config_wbon = 0;
  212. #else
  213. int mips_config_cwfon = 1;
  214. int mips_config_wbon = 1;
  215. #endif
  216. conf = read_c0_conf();
  217. conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON);
  218. conf |= mips_ic_disable ? 0 : TX39_CONF_ICE;
  219. conf |= mips_dc_disable ? 0 : TX39_CONF_DCE;
  220. conf |= mips_config_wbon ? TX39_CONF_WBON : 0;
  221. conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0;
  222. write_c0_conf(conf);
  223. write_c0_cache(0);
  224. }
  225. #endif
  226. /* initialize board */
  227. jmr3927_board_init();
  228. argptr = prom_getcmdline();
  229. if ((argptr = strstr(argptr, "toeon")) != NULL) {
  230. jmr3927_ccfg_toeon = 1;
  231. }
  232. argptr = prom_getcmdline();
  233. if ((argptr = strstr(argptr, "ip=")) == NULL) {
  234. argptr = prom_getcmdline();
  235. strcat(argptr, " ip=bootp");
  236. }
  237. #ifdef CONFIG_SERIAL_TXX9
  238. {
  239. extern int early_serial_txx9_setup(struct uart_port *port);
  240. int i;
  241. struct uart_port req;
  242. for(i = 0; i < 2; i++) {
  243. memset(&req, 0, sizeof(req));
  244. req.line = i;
  245. req.iotype = UPIO_MEM;
  246. req.membase = (char *)TX3927_SIO_REG(i);
  247. req.mapbase = TX3927_SIO_REG(i);
  248. req.irq = i == 0 ?
  249. JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1;
  250. if (i == 0)
  251. req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
  252. req.uartclk = JMR3927_IMCLK;
  253. early_serial_txx9_setup(&req);
  254. }
  255. }
  256. #ifdef CONFIG_SERIAL_TXX9_CONSOLE
  257. argptr = prom_getcmdline();
  258. if ((argptr = strstr(argptr, "console=")) == NULL) {
  259. argptr = prom_getcmdline();
  260. strcat(argptr, " console=ttyS1,115200");
  261. }
  262. #endif
  263. #endif
  264. }
  265. static void tx3927_setup(void);
  266. #ifdef CONFIG_PCI
  267. unsigned long mips_pci_io_base;
  268. unsigned long mips_pci_io_size;
  269. unsigned long mips_pci_mem_base;
  270. unsigned long mips_pci_mem_size;
  271. /* for legacy I/O, PCI I/O PCI Bus address must be 0 */
  272. unsigned long mips_pci_io_pciaddr = 0;
  273. #endif
  274. static void __init jmr3927_board_init(void)
  275. {
  276. char *argptr;
  277. #ifdef CONFIG_PCI
  278. mips_pci_io_base = JMR3927_PCIIO;
  279. mips_pci_io_size = JMR3927_PCIIO_SIZE;
  280. mips_pci_mem_base = JMR3927_PCIMEM;
  281. mips_pci_mem_size = JMR3927_PCIMEM_SIZE;
  282. #endif
  283. tx3927_setup();
  284. if (jmr3927_have_isac()) {
  285. #ifdef CONFIG_FB_E1355
  286. argptr = prom_getcmdline();
  287. if ((argptr = strstr(argptr, "video=")) == NULL) {
  288. argptr = prom_getcmdline();
  289. strcat(argptr, " video=e1355fb:crt16h");
  290. }
  291. #endif
  292. #ifdef CONFIG_BLK_DEV_IDE
  293. /* overrides PCI-IDE */
  294. #endif
  295. }
  296. /* SIO0 DTR on */
  297. jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR);
  298. jmr3927_led_set(0);
  299. if (jmr3927_have_isac())
  300. jmr3927_io_led_set(0);
  301. printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n",
  302. jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK,
  303. jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK,
  304. jmr3927_dipsw1(), jmr3927_dipsw2(),
  305. jmr3927_dipsw3(), jmr3927_dipsw4());
  306. if (jmr3927_have_isac())
  307. printk("JMI-3927IO2 --- ISAC(Rev %d) DIPSW:%01x\n",
  308. jmr3927_isac_reg_in(JMR3927_ISAC_REV_ADDR) & JMR3927_REV_MASK,
  309. jmr3927_io_dipsw());
  310. }
  311. void __init tx3927_setup(void)
  312. {
  313. int i;
  314. /* SDRAMC are configured by PROM */
  315. /* ROMC */
  316. tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048;
  317. tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8;
  318. tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698;
  319. tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218;
  320. /* CCFG */
  321. /* enable Timeout BusError */
  322. if (jmr3927_ccfg_toeon)
  323. tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE;
  324. /* clear BusErrorOnWrite flag */
  325. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW;
  326. /* Disable PCI snoop */
  327. tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP;
  328. #ifdef DO_WRITE_THROUGH
  329. /* Enable PCI SNOOP - with write through only */
  330. tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP;
  331. #endif
  332. /* Pin selection */
  333. tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL;
  334. tx3927_ccfgptr->pcfg |=
  335. TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL |
  336. (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1));
  337. printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n",
  338. tx3927_ccfgptr->crir,
  339. tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg);
  340. /* IRC */
  341. /* disable interrupt control */
  342. tx3927_ircptr->cer = 0;
  343. /* mask all IRC interrupts */
  344. tx3927_ircptr->imr = 0;
  345. for (i = 0; i < TX3927_NUM_IR / 2; i++) {
  346. tx3927_ircptr->ilr[i] = 0;
  347. }
  348. /* setup IRC interrupt mode (Low Active) */
  349. for (i = 0; i < TX3927_NUM_IR / 8; i++) {
  350. tx3927_ircptr->cr[i] = 0;
  351. }
  352. /* TMR */
  353. /* disable all timers */
  354. for (i = 0; i < TX3927_NR_TMR; i++) {
  355. tx3927_tmrptr(i)->tcr = TXx927_TMTCR_CRE;
  356. tx3927_tmrptr(i)->tisr = 0;
  357. tx3927_tmrptr(i)->cpra = 0xffffffff;
  358. tx3927_tmrptr(i)->itmr = 0;
  359. tx3927_tmrptr(i)->ccdr = 0;
  360. tx3927_tmrptr(i)->pgmr = 0;
  361. }
  362. /* DMA */
  363. tx3927_dmaptr->mcr = 0;
  364. for (i = 0; i < sizeof(tx3927_dmaptr->ch) / sizeof(tx3927_dmaptr->ch[0]); i++) {
  365. /* reset channel */
  366. tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST;
  367. tx3927_dmaptr->ch[i].ccr = 0;
  368. }
  369. /* enable DMA */
  370. #ifdef __BIG_ENDIAN
  371. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN;
  372. #else
  373. tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE;
  374. #endif
  375. #ifdef CONFIG_PCI
  376. /* PCIC */
  377. printk("TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:",
  378. tx3927_pcicptr->did, tx3927_pcicptr->vid,
  379. tx3927_pcicptr->rid);
  380. if (!(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB)) {
  381. printk("External\n");
  382. /* XXX */
  383. } else {
  384. printk("Internal\n");
  385. /* Reset PCI Bus */
  386. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  387. udelay(100);
  388. jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI,
  389. JMR3927_IOC_RESET_ADDR);
  390. udelay(100);
  391. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  392. /* Disable External PCI Config. Access */
  393. tx3927_pcicptr->lbc = TX3927_PCIC_LBC_EPCAD;
  394. #ifdef __BIG_ENDIAN
  395. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_IBSE |
  396. TX3927_PCIC_LBC_TIBSE |
  397. TX3927_PCIC_LBC_TMFBSE | TX3927_PCIC_LBC_MSDSE;
  398. #endif
  399. /* LB->PCI mappings */
  400. tx3927_pcicptr->iomas = ~(mips_pci_io_size - 1);
  401. tx3927_pcicptr->ilbioma = mips_pci_io_base;
  402. tx3927_pcicptr->ipbioma = mips_pci_io_pciaddr;
  403. tx3927_pcicptr->mmas = ~(mips_pci_mem_size - 1);
  404. tx3927_pcicptr->ilbmma = mips_pci_mem_base;
  405. tx3927_pcicptr->ipbmma = mips_pci_mem_base;
  406. /* PCI->LB mappings */
  407. tx3927_pcicptr->iobas = 0xffffffff;
  408. tx3927_pcicptr->ioba = 0;
  409. tx3927_pcicptr->tlbioma = 0;
  410. tx3927_pcicptr->mbas = ~(mips_pci_mem_size - 1);
  411. tx3927_pcicptr->mba = 0;
  412. tx3927_pcicptr->tlbmma = 0;
  413. #ifndef JMR3927_INIT_INDIRECT_PCI
  414. /* Enable Direct mapping Address Space Decoder */
  415. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_ILMDE | TX3927_PCIC_LBC_ILIDE;
  416. #endif
  417. /* Clear All Local Bus Status */
  418. tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL;
  419. /* Enable All Local Bus Interrupts */
  420. tx3927_pcicptr->lbim = TX3927_PCIC_LBIM_ALL;
  421. /* Clear All PCI Status Error */
  422. tx3927_pcicptr->pcistat = TX3927_PCIC_PCISTATIM_ALL;
  423. /* Enable All PCI Status Error Interrupts */
  424. tx3927_pcicptr->pcistatim = TX3927_PCIC_PCISTATIM_ALL;
  425. /* PCIC Int => IRC IRQ10 */
  426. tx3927_pcicptr->il = TX3927_IR_PCI;
  427. #if 1
  428. /* Target Control (per errata) */
  429. tx3927_pcicptr->tc = TX3927_PCIC_TC_OF8E | TX3927_PCIC_TC_IF8E;
  430. #endif
  431. /* Enable Bus Arbiter */
  432. #if 0
  433. tx3927_pcicptr->req_trace = 0x73737373;
  434. #endif
  435. tx3927_pcicptr->pbapmc = TX3927_PCIC_PBAPMC_PBAEN;
  436. tx3927_pcicptr->pcicmd = PCI_COMMAND_MASTER |
  437. PCI_COMMAND_MEMORY |
  438. #if 1
  439. PCI_COMMAND_IO |
  440. #endif
  441. PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
  442. }
  443. #endif /* CONFIG_PCI */
  444. /* PIO */
  445. /* PIO[15:12] connected to LEDs */
  446. tx3927_pioptr->dir = 0x0000f000;
  447. tx3927_pioptr->maskcpu = 0;
  448. tx3927_pioptr->maskext = 0;
  449. {
  450. unsigned int conf;
  451. conf = read_c0_conf();
  452. if (!(conf & TX39_CONF_ICE))
  453. printk("TX3927 I-Cache disabled.\n");
  454. if (!(conf & TX39_CONF_DCE))
  455. printk("TX3927 D-Cache disabled.\n");
  456. else if (!(conf & TX39_CONF_WBON))
  457. printk("TX3927 D-Cache WriteThrough.\n");
  458. else if (!(conf & TX39_CONF_CWFON))
  459. printk("TX3927 D-Cache WriteBack.\n");
  460. else
  461. printk("TX3927 D-Cache WriteBack (CWF) .\n");
  462. }
  463. }