PageRenderTime 53ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/ppc/platforms/ev64360.c

https://github.com/xoox/linux-2.6.18_pro500
C | 521 lines | 368 code | 82 blank | 71 comment | 20 complexity | c31b85905b55e3f995d125188970957d MD5 | raw file
  1. /*
  2. * Board setup routines for the Marvell EV-64360-BP Evaluation Board.
  3. *
  4. * Author: Lee Nicks <allinux@gmail.com>
  5. *
  6. * Based on code done by Rabeeh Khoury - rabeeh@galileo.co.il
  7. * Based on code done by - Mark A. Greer <mgreer@mvista.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/pci.h>
  16. #include <linux/kdev_t.h>
  17. #include <linux/console.h>
  18. #include <linux/initrd.h>
  19. #include <linux/root_dev.h>
  20. #include <linux/delay.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/bootmem.h>
  23. #include <linux/mtd/physmap.h>
  24. #include <linux/mv643xx.h>
  25. #include <linux/platform_device.h>
  26. #ifdef CONFIG_BOOTIMG
  27. #include <linux/bootimg.h>
  28. #endif
  29. #include <asm/page.h>
  30. #include <asm/time.h>
  31. #include <asm/smp.h>
  32. #include <asm/todc.h>
  33. #include <asm/bootinfo.h>
  34. #include <asm/ppcboot.h>
  35. #include <asm/mv64x60.h>
  36. #include <asm/machdep.h>
  37. #include <platforms/ev64360.h>
  38. #define BOARD_VENDOR "Marvell"
  39. #define BOARD_MACHINE "EV-64360-BP"
  40. static struct mv64x60_handle bh;
  41. static void __iomem *sram_base;
  42. static u32 ev64360_flash_size_0;
  43. static u32 ev64360_flash_size_1;
  44. static u32 ev64360_bus_frequency;
  45. unsigned char __res[sizeof(bd_t)];
  46. TODC_ALLOC();
  47. static int __init
  48. ev64360_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin)
  49. {
  50. return 0;
  51. }
  52. static void __init
  53. ev64360_setup_bridge(void)
  54. {
  55. struct mv64x60_setup_info si;
  56. int i;
  57. memset(&si, 0, sizeof(si));
  58. si.phys_reg_base = CONFIG_MV64X60_NEW_BASE;
  59. #ifdef CONFIG_PCI
  60. si.pci_1.enable_bus = 1;
  61. si.pci_1.pci_io.cpu_base = EV64360_PCI1_IO_START_PROC_ADDR;
  62. si.pci_1.pci_io.pci_base_hi = 0;
  63. si.pci_1.pci_io.pci_base_lo = EV64360_PCI1_IO_START_PCI_ADDR;
  64. si.pci_1.pci_io.size = EV64360_PCI1_IO_SIZE;
  65. si.pci_1.pci_io.swap = MV64x60_CPU2PCI_SWAP_NONE;
  66. si.pci_1.pci_mem[0].cpu_base = EV64360_PCI1_MEM_START_PROC_ADDR;
  67. si.pci_1.pci_mem[0].pci_base_hi = EV64360_PCI1_MEM_START_PCI_HI_ADDR;
  68. si.pci_1.pci_mem[0].pci_base_lo = EV64360_PCI1_MEM_START_PCI_LO_ADDR;
  69. si.pci_1.pci_mem[0].size = EV64360_PCI1_MEM_SIZE;
  70. si.pci_1.pci_mem[0].swap = MV64x60_CPU2PCI_SWAP_NONE;
  71. si.pci_1.pci_cmd_bits = 0;
  72. si.pci_1.latency_timer = 0x80;
  73. #else
  74. si.pci_0.enable_bus = 0;
  75. si.pci_1.enable_bus = 0;
  76. #endif
  77. for (i = 0; i < MV64x60_CPU2MEM_WINDOWS; i++) {
  78. #if defined(CONFIG_NOT_COHERENT_CACHE)
  79. si.cpu_prot_options[i] = 0;
  80. si.enet_options[i] = MV64360_ENET2MEM_SNOOP_NONE;
  81. si.mpsc_options[i] = MV64360_MPSC2MEM_SNOOP_NONE;
  82. si.idma_options[i] = MV64360_IDMA2MEM_SNOOP_NONE;
  83. si.pci_1.acc_cntl_options[i] =
  84. MV64360_PCI_ACC_CNTL_SNOOP_NONE |
  85. MV64360_PCI_ACC_CNTL_SWAP_NONE |
  86. MV64360_PCI_ACC_CNTL_MBURST_128_BYTES |
  87. MV64360_PCI_ACC_CNTL_RDSIZE_256_BYTES;
  88. #else
  89. si.cpu_prot_options[i] = 0;
  90. si.enet_options[i] = MV64360_ENET2MEM_SNOOP_NONE; /* errata */
  91. si.mpsc_options[i] = MV64360_MPSC2MEM_SNOOP_NONE; /* errata */
  92. si.idma_options[i] = MV64360_IDMA2MEM_SNOOP_NONE; /* errata */
  93. si.pci_1.acc_cntl_options[i] =
  94. MV64360_PCI_ACC_CNTL_SNOOP_WB |
  95. MV64360_PCI_ACC_CNTL_SWAP_NONE |
  96. MV64360_PCI_ACC_CNTL_MBURST_32_BYTES |
  97. MV64360_PCI_ACC_CNTL_RDSIZE_32_BYTES;
  98. #endif
  99. }
  100. if (mv64x60_init(&bh, &si))
  101. printk(KERN_WARNING "Bridge initialization failed.\n");
  102. #ifdef CONFIG_PCI
  103. pci_dram_offset = 0; /* sys mem at same addr on PCI & cpu bus */
  104. ppc_md.pci_swizzle = common_swizzle;
  105. ppc_md.pci_map_irq = ev64360_map_irq;
  106. ppc_md.pci_exclude_device = mv64x60_pci_exclude_device;
  107. mv64x60_set_bus(&bh, 1, 0);
  108. bh.hose_b->first_busno = 0;
  109. bh.hose_b->last_busno = 0xff;
  110. #endif
  111. }
  112. /* Bridge & platform setup routines */
  113. void __init
  114. ev64360_intr_setup(void)
  115. {
  116. /* MPP 8, 9, and 10 */
  117. mv64x60_clr_bits(&bh, MV64x60_MPP_CNTL_1, 0xfff);
  118. /*
  119. * Define GPP 8,9,and 10 interrupt polarity as active low
  120. * input signal and level triggered
  121. */
  122. mv64x60_set_bits(&bh, MV64x60_GPP_LEVEL_CNTL, 0x700);
  123. mv64x60_clr_bits(&bh, MV64x60_GPP_IO_CNTL, 0x700);
  124. /* Config GPP intr ctlr to respond to level trigger */
  125. mv64x60_set_bits(&bh, MV64x60_COMM_ARBITER_CNTL, (1<<10));
  126. /* Erranum FEr PCI-#8 */
  127. mv64x60_clr_bits(&bh, MV64x60_PCI0_CMD, (1<<5) | (1<<9));
  128. mv64x60_clr_bits(&bh, MV64x60_PCI1_CMD, (1<<5) | (1<<9));
  129. /*
  130. * Dismiss and then enable interrupt on GPP interrupt cause
  131. * for CPU #0
  132. */
  133. mv64x60_write(&bh, MV64x60_GPP_INTR_CAUSE, ~0x700);
  134. mv64x60_set_bits(&bh, MV64x60_GPP_INTR_MASK, 0x700);
  135. /*
  136. * Dismiss and then enable interrupt on CPU #0 high cause reg
  137. * BIT25 summarizes GPP interrupts 8-15
  138. */
  139. mv64x60_set_bits(&bh, MV64360_IC_CPU0_INTR_MASK_HI, (1<<25));
  140. }
  141. void __init
  142. ev64360_setup_peripherals(void)
  143. {
  144. u32 base;
  145. /* Set up window for boot CS */
  146. mv64x60_set_32bit_window(&bh, MV64x60_CPU2BOOT_WIN,
  147. EV64360_BOOT_WINDOW_BASE, EV64360_BOOT_WINDOW_SIZE, 0);
  148. bh.ci->enable_window_32bit(&bh, MV64x60_CPU2BOOT_WIN);
  149. /* We only use the 32-bit flash */
  150. mv64x60_get_32bit_window(&bh, MV64x60_CPU2BOOT_WIN, &base,
  151. &ev64360_flash_size_0);
  152. ev64360_flash_size_1 = 0;
  153. mv64x60_set_32bit_window(&bh, MV64x60_CPU2DEV_1_WIN,
  154. EV64360_RTC_WINDOW_BASE, EV64360_RTC_WINDOW_SIZE, 0);
  155. bh.ci->enable_window_32bit(&bh, MV64x60_CPU2DEV_1_WIN);
  156. TODC_INIT(TODC_TYPE_DS1501, 0, 0,
  157. ioremap(EV64360_RTC_WINDOW_BASE, EV64360_RTC_WINDOW_SIZE), 8);
  158. mv64x60_set_32bit_window(&bh, MV64x60_CPU2SRAM_WIN,
  159. EV64360_INTERNAL_SRAM_BASE, MV64360_SRAM_SIZE, 0);
  160. bh.ci->enable_window_32bit(&bh, MV64x60_CPU2SRAM_WIN);
  161. sram_base = ioremap(EV64360_INTERNAL_SRAM_BASE, MV64360_SRAM_SIZE);
  162. /* Set up Enet->SRAM window */
  163. mv64x60_set_32bit_window(&bh, MV64x60_ENET2MEM_4_WIN,
  164. EV64360_INTERNAL_SRAM_BASE, MV64360_SRAM_SIZE, 0x2);
  165. bh.ci->enable_window_32bit(&bh, MV64x60_ENET2MEM_4_WIN);
  166. /* Give enet r/w access to memory region */
  167. mv64x60_set_bits(&bh, MV64360_ENET2MEM_ACC_PROT_0, (0x3 << (4 << 1)));
  168. mv64x60_set_bits(&bh, MV64360_ENET2MEM_ACC_PROT_1, (0x3 << (4 << 1)));
  169. mv64x60_set_bits(&bh, MV64360_ENET2MEM_ACC_PROT_2, (0x3 << (4 << 1)));
  170. mv64x60_clr_bits(&bh, MV64x60_PCI1_PCI_DECODE_CNTL, (1 << 3));
  171. mv64x60_clr_bits(&bh, MV64x60_TIMR_CNTR_0_3_CNTL,
  172. ((1 << 0) | (1 << 8) | (1 << 16) | (1 << 24)));
  173. #if defined(CONFIG_NOT_COHERENT_CACHE)
  174. mv64x60_write(&bh, MV64360_SRAM_CONFIG, 0x00160000);
  175. #else
  176. mv64x60_write(&bh, MV64360_SRAM_CONFIG, 0x001600b2);
  177. #endif
  178. /*
  179. * Setting the SRAM to 0. Note that this generates parity errors on
  180. * internal data path in SRAM since it's first time accessing it
  181. * while after reset it's not configured.
  182. */
  183. memset(sram_base, 0, MV64360_SRAM_SIZE);
  184. /* set up PCI interrupt controller */
  185. ev64360_intr_setup();
  186. }
  187. static void __init
  188. ev64360_setup_arch(void)
  189. {
  190. if (ppc_md.progress)
  191. ppc_md.progress("ev64360_setup_arch: enter", 0);
  192. set_tb(0, 0);
  193. #ifdef CONFIG_BLK_DEV_INITRD
  194. if (initrd_start)
  195. ROOT_DEV = Root_RAM0;
  196. else
  197. #endif
  198. #ifdef CONFIG_ROOT_NFS
  199. ROOT_DEV = Root_NFS;
  200. #else
  201. ROOT_DEV = Root_SDA2;
  202. #endif
  203. /*
  204. * Set up the L2CR register.
  205. */
  206. _set_L2CR(L2CR_L2E | L2CR_L2PE);
  207. if (ppc_md.progress)
  208. ppc_md.progress("ev64360_setup_arch: calling setup_bridge", 0);
  209. ev64360_setup_bridge();
  210. ev64360_setup_peripherals();
  211. ev64360_bus_frequency = ev64360_bus_freq();
  212. printk(KERN_INFO "%s %s port (C) 2005 Lee Nicks "
  213. "(allinux@gmail.com)\n", BOARD_VENDOR, BOARD_MACHINE);
  214. if (ppc_md.progress)
  215. ppc_md.progress("ev64360_setup_arch: exit", 0);
  216. }
  217. /* Platform device data fixup routines. */
  218. #if defined(CONFIG_SERIAL_MPSC)
  219. static void __init
  220. ev64360_fixup_mpsc_pdata(struct platform_device *pdev)
  221. {
  222. struct mpsc_pdata *pdata;
  223. pdata = (struct mpsc_pdata *)pdev->dev.platform_data;
  224. pdata->max_idle = 40;
  225. pdata->default_baud = EV64360_DEFAULT_BAUD;
  226. pdata->brg_clk_src = EV64360_MPSC_CLK_SRC;
  227. /*
  228. * TCLK (not SysCLk) is routed to BRG, then to the MPSC. On most parts,
  229. * TCLK == SysCLK but on 64460, they are separate pins.
  230. * SysCLK can go up to 200 MHz but TCLK can only go up to 133 MHz.
  231. */
  232. pdata->brg_clk_freq = min(ev64360_bus_frequency, MV64x60_TCLK_FREQ_MAX);
  233. }
  234. #endif
  235. #if defined(CONFIG_MV643XX_ETH)
  236. static void __init
  237. ev64360_fixup_eth_pdata(struct platform_device *pdev)
  238. {
  239. struct mv643xx_eth_platform_data *eth_pd;
  240. static u16 phy_addr[] = {
  241. EV64360_ETH0_PHY_ADDR,
  242. EV64360_ETH1_PHY_ADDR,
  243. EV64360_ETH2_PHY_ADDR,
  244. };
  245. eth_pd = pdev->dev.platform_data;
  246. eth_pd->force_phy_addr = 1;
  247. eth_pd->phy_addr = phy_addr[pdev->id];
  248. eth_pd->tx_queue_size = EV64360_ETH_TX_QUEUE_SIZE;
  249. eth_pd->rx_queue_size = EV64360_ETH_RX_QUEUE_SIZE;
  250. }
  251. #endif
  252. static int
  253. ev64360_platform_notify(struct device *dev)
  254. {
  255. static struct {
  256. char *bus_id;
  257. void ((*rtn)(struct platform_device *pdev));
  258. } dev_map[] = {
  259. #if defined(CONFIG_SERIAL_MPSC)
  260. { MPSC_CTLR_NAME ".0", ev64360_fixup_mpsc_pdata },
  261. { MPSC_CTLR_NAME ".1", ev64360_fixup_mpsc_pdata },
  262. #endif
  263. #if defined(CONFIG_MV643XX_ETH)
  264. { MV643XX_ETH_NAME ".0", ev64360_fixup_eth_pdata },
  265. { MV643XX_ETH_NAME ".1", ev64360_fixup_eth_pdata },
  266. { MV643XX_ETH_NAME ".2", ev64360_fixup_eth_pdata },
  267. #endif
  268. };
  269. struct platform_device *pdev;
  270. int i;
  271. if (dev && dev->bus_id)
  272. for (i=0; i<ARRAY_SIZE(dev_map); i++)
  273. if (!strncmp(dev->bus_id, dev_map[i].bus_id,
  274. BUS_ID_SIZE)) {
  275. pdev = container_of(dev,
  276. struct platform_device, dev);
  277. dev_map[i].rtn(pdev);
  278. }
  279. return 0;
  280. }
  281. #ifdef CONFIG_MTD_PHYSMAP
  282. #ifndef MB
  283. #define MB (1 << 20)
  284. #endif
  285. /*
  286. * MTD Layout.
  287. *
  288. * FLASH Amount: 0xff000000 - 0xffffffff
  289. * ------------- -----------------------
  290. * Reserved: 0xff000000 - 0xff03ffff
  291. * JFFS2 file system: 0xff040000 - 0xffefffff
  292. * U-boot: 0xfff00000 - 0xffffffff
  293. */
  294. static int __init
  295. ev64360_setup_mtd(void)
  296. {
  297. u32 size;
  298. int ptbl_entries;
  299. static struct mtd_partition *ptbl;
  300. size = ev64360_flash_size_0 + ev64360_flash_size_1;
  301. if (!size)
  302. return -ENOMEM;
  303. ptbl_entries = 3;
  304. if ((ptbl = kmalloc(ptbl_entries * sizeof(struct mtd_partition),
  305. GFP_KERNEL)) == NULL) {
  306. printk(KERN_WARNING "Can't alloc MTD partition table\n");
  307. return -ENOMEM;
  308. }
  309. memset(ptbl, 0, ptbl_entries * sizeof(struct mtd_partition));
  310. ptbl[0].name = "reserved";
  311. ptbl[0].offset = 0;
  312. ptbl[0].size = EV64360_MTD_RESERVED_SIZE;
  313. ptbl[1].name = "jffs2";
  314. ptbl[1].offset = EV64360_MTD_RESERVED_SIZE;
  315. ptbl[1].size = EV64360_MTD_JFFS2_SIZE;
  316. ptbl[2].name = "U-BOOT";
  317. ptbl[2].offset = EV64360_MTD_RESERVED_SIZE + EV64360_MTD_JFFS2_SIZE;
  318. ptbl[2].size = EV64360_MTD_UBOOT_SIZE;
  319. physmap_map.size = size;
  320. physmap_set_partitions(ptbl, ptbl_entries);
  321. return 0;
  322. }
  323. arch_initcall(ev64360_setup_mtd);
  324. #endif
  325. static void
  326. ev64360_restart(char *cmd)
  327. {
  328. ulong i = 0xffffffff;
  329. volatile unsigned char * rtc_base = ioremap(EV64360_RTC_WINDOW_BASE,0x4000);
  330. /* issue hard reset */
  331. rtc_base[0xf] = 0x80;
  332. rtc_base[0xc] = 0x00;
  333. rtc_base[0xd] = 0x01;
  334. rtc_base[0xf] = 0x83;
  335. while (i-- > 0) ;
  336. panic("restart failed\n");
  337. }
  338. static void
  339. ev64360_halt(void)
  340. {
  341. while (1) ;
  342. /* NOTREACHED */
  343. }
  344. static void
  345. ev64360_power_off(void)
  346. {
  347. ev64360_halt();
  348. /* NOTREACHED */
  349. }
  350. static int
  351. ev64360_show_cpuinfo(struct seq_file *m)
  352. {
  353. seq_printf(m, "vendor\t\t: " BOARD_VENDOR "\n");
  354. seq_printf(m, "machine\t\t: " BOARD_MACHINE "\n");
  355. seq_printf(m, "bus speed\t: %dMHz\n", ev64360_bus_frequency/1000/1000);
  356. return 0;
  357. }
  358. static void __init
  359. ev64360_calibrate_decr(void)
  360. {
  361. u32 freq;
  362. freq = ev64360_bus_frequency / 4;
  363. printk(KERN_INFO "time_init: decrementer frequency = %lu.%.6lu MHz\n",
  364. (long)freq / 1000000, (long)freq % 1000000);
  365. tb_ticks_per_jiffy = freq / HZ;
  366. tb_to_us = mulhwu_scale_factor(freq, 1000000);
  367. }
  368. unsigned long __init
  369. ev64360_find_end_of_memory(void)
  370. {
  371. return mv64x60_get_mem_size(CONFIG_MV64X60_NEW_BASE,
  372. MV64x60_TYPE_MV64360);
  373. }
  374. static inline void
  375. ev64360_set_bat(void)
  376. {
  377. mb();
  378. mtspr(SPRN_DBAT2U, 0xf0001ffe);
  379. mtspr(SPRN_DBAT2L, 0xf000002a);
  380. mb();
  381. }
  382. #if defined(CONFIG_SERIAL_TEXT_DEBUG) && defined(CONFIG_SERIAL_MPSC_CONSOLE)
  383. static void __init
  384. ev64360_map_io(void)
  385. {
  386. io_block_mapping(CONFIG_MV64X60_NEW_BASE, \
  387. CONFIG_MV64X60_NEW_BASE, \
  388. 0x00020000, _PAGE_IO);
  389. }
  390. #endif
  391. void __init
  392. platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
  393. unsigned long r6, unsigned long r7)
  394. {
  395. parse_bootinfo(find_bootinfo());
  396. /* ASSUMPTION: If both r3 (bd_t pointer) and r6 (cmdline pointer)
  397. * are non-zero, then we should use the board info from the bd_t
  398. * structure and the cmdline pointed to by r6 instead of the
  399. * information from birecs, if any. Otherwise, use the information
  400. * from birecs as discovered by the preceeding call to
  401. * parse_bootinfo(). This rule should work with both PPCBoot, which
  402. * uses a bd_t board info structure, and the kernel boot wrapper,
  403. * which uses birecs.
  404. */
  405. if (r3 && r6) {
  406. /* copy board info structure */
  407. memcpy( (void *)__res,(void *)(r3+KERNELBASE), sizeof(bd_t) );
  408. /* copy command line */
  409. *(char *)(r7+KERNELBASE) = 0;
  410. strcpy(cmd_line, (char *)(r6+KERNELBASE));
  411. }
  412. #ifdef CONFIG_ISA
  413. isa_mem_base = 0;
  414. #endif
  415. ppc_md.setup_arch = ev64360_setup_arch;
  416. ppc_md.show_cpuinfo = ev64360_show_cpuinfo;
  417. ppc_md.init_IRQ = mv64360_init_irq;
  418. ppc_md.get_irq = mv64360_get_irq;
  419. ppc_md.restart = ev64360_restart;
  420. ppc_md.power_off = ev64360_power_off;
  421. ppc_md.halt = ev64360_halt;
  422. ppc_md.find_end_of_memory = ev64360_find_end_of_memory;
  423. ppc_md.init = NULL;
  424. ppc_md.time_init = todc_time_init;
  425. ppc_md.set_rtc_time = todc_set_rtc_time;
  426. ppc_md.get_rtc_time = todc_get_rtc_time;
  427. ppc_md.nvram_read_val = todc_direct_read_val;
  428. ppc_md.nvram_write_val = todc_direct_write_val;
  429. ppc_md.calibrate_decr = ev64360_calibrate_decr;
  430. #if defined(CONFIG_SERIAL_TEXT_DEBUG) && defined(CONFIG_SERIAL_MPSC_CONSOLE)
  431. ppc_md.setup_io_mappings = ev64360_map_io;
  432. ppc_md.progress = mv64x60_mpsc_progress;
  433. mv64x60_progress_init(CONFIG_MV64X60_NEW_BASE);
  434. #endif
  435. #if defined(CONFIG_SERIAL_MPSC) || defined(CONFIG_MV643XX_ETH)
  436. platform_notify = ev64360_platform_notify;
  437. #endif
  438. ev64360_set_bat(); /* Need for ev64360_find_end_of_memory and progress */
  439. }