setup-r8a7779.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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/irqchip.h>
  11. #include <asm/mach/arch.h>
  12. #include <asm/mach/map.h>
  13. #include "common.h"
  14. #include "r8a7779.h"
  15. #define HPBREG_BASE 0xfe700000
  16. /* IRQ */
  17. #define INT2SMSKCR0 0x822a0 /* Interrupt Submask Clear Register 0 */
  18. #define INT2SMSKCR1 0x822a4 /* Interrupt Submask Clear Register 1 */
  19. #define INT2SMSKCR2 0x822a8 /* Interrupt Submask Clear Register 2 */
  20. #define INT2SMSKCR3 0x822ac /* Interrupt Submask Clear Register 3 */
  21. #define INT2SMSKCR4 0x822b0 /* Interrupt Submask Clear Register 4 */
  22. #define INT2NTSR0 0x00060 /* Interrupt Notification Select Register 0 */
  23. #define INT2NTSR1 0x00064 /* Interrupt Notification Select Register 1 */
  24. static void __init r8a7779_init_irq_dt(void)
  25. {
  26. void __iomem *base = ioremap(HPBREG_BASE, 0x00100000);
  27. irqchip_init();
  28. /* route all interrupts to ARM */
  29. writel(0xffffffff, base + INT2NTSR0);
  30. writel(0x3fffffff, base + INT2NTSR1);
  31. /* unmask all known interrupts in INTCS2 */
  32. writel(0xfffffff0, base + INT2SMSKCR0);
  33. writel(0xfff7ffff, base + INT2SMSKCR1);
  34. writel(0xfffbffdf, base + INT2SMSKCR2);
  35. writel(0xbffffffc, base + INT2SMSKCR3);
  36. writel(0x003fee3f, base + INT2SMSKCR4);
  37. iounmap(base);
  38. }
  39. static const char *const r8a7779_compat_dt[] __initconst = {
  40. "renesas,r8a7779",
  41. NULL
  42. };
  43. DT_MACHINE_START(R8A7779_DT, "Generic R8A7779 (Flattened Device Tree)")
  44. .smp = smp_ops(r8a7779_smp_ops),
  45. .init_irq = r8a7779_init_irq_dt,
  46. .init_late = shmobile_init_late,
  47. .dt_compat = r8a7779_compat_dt,
  48. MACHINE_END