core.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * linux/arch/arm/mm/mm-lusl7200.c
  3. *
  4. * Copyright (C) 2000 Steve Hill (sjhill@cotw.com)
  5. *
  6. * Extra MM routines for L7200 architecture
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/init.h>
  10. #include <asm/hardware.h>
  11. #include <asm/page.h>
  12. #include <asm/mach/map.h>
  13. /*
  14. * IRQ base register
  15. */
  16. #define IRQ_BASE (IO_BASE_2 + 0x1000)
  17. /*
  18. * Normal IRQ registers
  19. */
  20. #define IRQ_STATUS (*(volatile unsigned long *) (IRQ_BASE + 0x000))
  21. #define IRQ_RAWSTATUS (*(volatile unsigned long *) (IRQ_BASE + 0x004))
  22. #define IRQ_ENABLE (*(volatile unsigned long *) (IRQ_BASE + 0x008))
  23. #define IRQ_ENABLECLEAR (*(volatile unsigned long *) (IRQ_BASE + 0x00c))
  24. #define IRQ_SOFT (*(volatile unsigned long *) (IRQ_BASE + 0x010))
  25. #define IRQ_SOURCESEL (*(volatile unsigned long *) (IRQ_BASE + 0x018))
  26. /*
  27. * Fast IRQ registers
  28. */
  29. #define FIQ_STATUS (*(volatile unsigned long *) (IRQ_BASE + 0x100))
  30. #define FIQ_RAWSTATUS (*(volatile unsigned long *) (IRQ_BASE + 0x104))
  31. #define FIQ_ENABLE (*(volatile unsigned long *) (IRQ_BASE + 0x108))
  32. #define FIQ_ENABLECLEAR (*(volatile unsigned long *) (IRQ_BASE + 0x10c))
  33. #define FIQ_SOFT (*(volatile unsigned long *) (IRQ_BASE + 0x110))
  34. #define FIQ_SOURCESEL (*(volatile unsigned long *) (IRQ_BASE + 0x118))
  35. static void l7200_mask_irq(unsigned int irq)
  36. {
  37. IRQ_ENABLECLEAR = 1 << irq;
  38. }
  39. static void l7200_unmask_irq(unsigned int irq)
  40. {
  41. IRQ_ENABLE = 1 << irq;
  42. }
  43. static void __init l7200_init_irq(void)
  44. {
  45. int irq;
  46. IRQ_ENABLECLEAR = 0xffffffff; /* clear all interrupt enables */
  47. FIQ_ENABLECLEAR = 0xffffffff; /* clear all fast interrupt enables */
  48. for (irq = 0; irq < NR_IRQS; irq++) {
  49. irq_desc[irq].valid = 1;
  50. irq_desc[irq].probe_ok = 1;
  51. irq_desc[irq].mask_ack = l7200_mask_irq;
  52. irq_desc[irq].mask = l7200_mask_irq;
  53. irq_desc[irq].unmask = l7200_unmask_irq;
  54. }
  55. init_FIQ();
  56. }
  57. static struct map_desc l7200_io_desc[] __initdata = {
  58. { IO_BASE, IO_START, IO_SIZE, MT_DEVICE },
  59. { IO_BASE_2, IO_START_2, IO_SIZE_2, MT_DEVICE },
  60. { AUX_BASE, AUX_START, AUX_SIZE, MT_DEVICE },
  61. { FLASH1_BASE, FLASH1_START, FLASH1_SIZE, MT_DEVICE },
  62. { FLASH2_BASE, FLASH2_START, FLASH2_SIZE, MT_DEVICE }
  63. };
  64. static void __init l7200_map_io(void)
  65. {
  66. iotable_init(l7200_io_desc, ARRAY_SIZE(l7200_io_desc));
  67. }
  68. MACHINE_START(L7200, "LinkUp Systems L7200")
  69. /* Maintainer: Steve Hill / Scott McConnell */
  70. .phys_ram = 0xf0000000,
  71. .phys_io = 0x80040000,
  72. .io_pg_offst = ((0xd0000000) >> 18) & 0xfffc,
  73. .map_io = l7200_map_io,
  74. .init_irq = l7200_init_irq,
  75. MACHINE_END