setup.c 1.5 KB

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