setup.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * linux/arch/sh/boards/sh03/setup.c
  3. *
  4. * Copyright (C) 2004 Interface Co.,Ltd. Saito.K
  5. *
  6. */
  7. #include <linux/init.h>
  8. #include <linux/irq.h>
  9. #include <linux/pci.h>
  10. #include <linux/platform_device.h>
  11. #include <asm/io.h>
  12. #include <asm/rtc.h>
  13. #include <asm/sh03/io.h>
  14. #include <asm/sh03/sh03.h>
  15. #include <asm/addrspace.h>
  16. static struct ipr_data ipr_irq_table[] = {
  17. { IRL0_IRQ, 0, IRL0_IPR_POS, IRL0_PRIORITY },
  18. { IRL1_IRQ, 0, IRL1_IPR_POS, IRL1_PRIORITY },
  19. { IRL2_IRQ, 0, IRL2_IPR_POS, IRL2_PRIORITY },
  20. { IRL3_IRQ, 0, IRL3_IPR_POS, IRL3_PRIORITY },
  21. };
  22. static unsigned long ipr_offsets[] = {
  23. INTC_IPRD,
  24. };
  25. static struct ipr_desc ipr_irq_desc = {
  26. .ipr_offsets = ipr_offsets,
  27. .nr_offsets = ARRAY_SIZE(ipr_offsets),
  28. .ipr_data = ipr_irq_table,
  29. .nr_irqs = ARRAY_SIZE(ipr_irq_table),
  30. .chip = {
  31. .name = "IPR-sh03",
  32. },
  33. };
  34. static void __init init_sh03_IRQ(void)
  35. {
  36. ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
  37. register_ipr_controller(&ipr_irq_desc);
  38. }
  39. extern void *cf_io_base;
  40. static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size)
  41. {
  42. if (PXSEG(port))
  43. return (void __iomem *)port;
  44. /* CompactFlash (IDE) */
  45. if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6))
  46. return (void __iomem *)((unsigned long)cf_io_base + port);
  47. return (void __iomem *)(port + PCI_IO_BASE);
  48. }
  49. /* arch/sh/boards/sh03/rtc.c */
  50. void sh03_time_init(void);
  51. static void __init sh03_setup(char **cmdline_p)
  52. {
  53. board_time_init = sh03_time_init;
  54. }
  55. static struct resource heartbeat_resources[] = {
  56. [0] = {
  57. .start = 0xa0800000,
  58. .end = 0xa0800000 + 8 - 1,
  59. .flags = IORESOURCE_MEM,
  60. },
  61. };
  62. static struct platform_device heartbeat_device = {
  63. .name = "heartbeat",
  64. .id = -1,
  65. .num_resources = ARRAY_SIZE(heartbeat_resources),
  66. .resource = heartbeat_resources,
  67. };
  68. static struct platform_device *sh03_devices[] __initdata = {
  69. &heartbeat_device,
  70. };
  71. static int __init sh03_devices_setup(void)
  72. {
  73. return platform_add_devices(sh03_devices, ARRAY_SIZE(sh03_devices));
  74. }
  75. __initcall(sh03_devices_setup);
  76. static struct sh_machine_vector mv_sh03 __initmv = {
  77. .mv_name = "Interface (CTP/PCI-SH03)",
  78. .mv_setup = sh03_setup,
  79. .mv_nr_irqs = 48,
  80. .mv_ioport_map = sh03_ioport_map,
  81. .mv_init_irq = init_sh03_IRQ,
  82. };