setup.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 <asm/io.h>
  10. #include <asm/rtc.h>
  11. #include <asm/sh03/io.h>
  12. #include <asm/sh03/sh03.h>
  13. #include <asm/addrspace.h>
  14. #include "../../drivers/pci/pci-sh7751.h"
  15. const char *get_system_type(void)
  16. {
  17. return "Interface CTP/PCI-SH03)";
  18. }
  19. static void init_sh03_IRQ(void)
  20. {
  21. ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
  22. make_ipr_irq(IRL0_IRQ, IRL0_IPR_ADDR, IRL0_IPR_POS, IRL0_PRIORITY);
  23. make_ipr_irq(IRL1_IRQ, IRL1_IPR_ADDR, IRL1_IPR_POS, IRL1_PRIORITY);
  24. make_ipr_irq(IRL2_IRQ, IRL2_IPR_ADDR, IRL2_IPR_POS, IRL2_PRIORITY);
  25. make_ipr_irq(IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY);
  26. }
  27. extern void *cf_io_base;
  28. static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size)
  29. {
  30. if (PXSEG(port))
  31. return (void __iomem *)port;
  32. /* CompactFlash (IDE) */
  33. if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6))
  34. return (void __iomem *)((unsigned long)cf_io_base + port);
  35. return (void __iomem *)(port + SH7751_PCI_IO_BASE);
  36. }
  37. struct sh_machine_vector mv_sh03 __initmv = {
  38. .mv_nr_irqs = 48,
  39. .mv_ioport_map = sh03_ioport_map,
  40. .mv_init_irq = init_sh03_IRQ,
  41. #ifdef CONFIG_HEARTBEAT
  42. .mv_heartbeat = heartbeat_sh03,
  43. #endif
  44. };
  45. ALIAS_MV(sh03)
  46. /* arch/sh/boards/sh03/rtc.c */
  47. void sh03_time_init(void);
  48. int __init platform_setup(void)
  49. {
  50. board_time_init = sh03_time_init;
  51. return 0;
  52. }