setup-r8a7779.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * r8a7779 processor support
  4. *
  5. * Copyright (C) 2011, 2013 Renesas Solutions Corp.
  6. * Copyright (C) 2011 Magnus Damm
  7. * Copyright (C) 2013 Cogent Embedded, Inc.
  8. */
  9. #include <linux/init.h>
  10. #include <linux/irq.h>
  11. #include <linux/irqchip.h>
  12. #include <linux/irqchip/arm-gic.h>
  13. #include <asm/mach/arch.h>
  14. #include <asm/mach/map.h>
  15. #include "common.h"
  16. #include "r8a7779.h"
  17. static struct map_desc r8a7779_io_desc[] __initdata = {
  18. /* 2M identity mapping for 0xf0000000 (MPCORE) */
  19. {
  20. .virtual = 0xf0000000,
  21. .pfn = __phys_to_pfn(0xf0000000),
  22. .length = SZ_2M,
  23. .type = MT_DEVICE_NONSHARED
  24. },
  25. /* 16M identity mapping for 0xfexxxxxx (DMAC-S/HPBREG/INTC2/LRAM/DBSC) */
  26. {
  27. .virtual = 0xfe000000,
  28. .pfn = __phys_to_pfn(0xfe000000),
  29. .length = SZ_16M,
  30. .type = MT_DEVICE_NONSHARED
  31. },
  32. };
  33. static void __init r8a7779_map_io(void)
  34. {
  35. debug_ll_io_init();
  36. iotable_init(r8a7779_io_desc, ARRAY_SIZE(r8a7779_io_desc));
  37. }
  38. /* IRQ */
  39. #define INT2SMSKCR0 IOMEM(0xfe7822a0)
  40. #define INT2SMSKCR1 IOMEM(0xfe7822a4)
  41. #define INT2SMSKCR2 IOMEM(0xfe7822a8)
  42. #define INT2SMSKCR3 IOMEM(0xfe7822ac)
  43. #define INT2SMSKCR4 IOMEM(0xfe7822b0)
  44. #define INT2NTSR0 IOMEM(0xfe700060)
  45. #define INT2NTSR1 IOMEM(0xfe700064)
  46. static void __init r8a7779_init_irq_dt(void)
  47. {
  48. irqchip_init();
  49. /* route all interrupts to ARM */
  50. __raw_writel(0xffffffff, INT2NTSR0);
  51. __raw_writel(0x3fffffff, INT2NTSR1);
  52. /* unmask all known interrupts in INTCS2 */
  53. __raw_writel(0xfffffff0, INT2SMSKCR0);
  54. __raw_writel(0xfff7ffff, INT2SMSKCR1);
  55. __raw_writel(0xfffbffdf, INT2SMSKCR2);
  56. __raw_writel(0xbffffffc, INT2SMSKCR3);
  57. __raw_writel(0x003fee3f, INT2SMSKCR4);
  58. }
  59. static const char *const r8a7779_compat_dt[] __initconst = {
  60. "renesas,r8a7779",
  61. NULL,
  62. };
  63. DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)")
  64. .smp = smp_ops(r8a7779_smp_ops),
  65. .map_io = r8a7779_map_io,
  66. .init_early = shmobile_init_delay,
  67. .init_irq = r8a7779_init_irq_dt,
  68. .init_late = shmobile_init_late,
  69. .dt_compat = r8a7779_compat_dt,
  70. MACHINE_END