soc.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2009
  4. * Marvell Semiconductor <www.marvell.com>
  5. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  6. *
  7. * Header file for the Marvell's Feroceon CPU core.
  8. */
  9. #ifndef _ASM_ARCH_KIRKWOOD_H
  10. #define _ASM_ARCH_KIRKWOOD_H
  11. #if defined (CONFIG_FEROCEON_88FR131) || defined (CONFIG_SHEEVA_88SV131)
  12. /* SOC specific definations */
  13. #define INTREG_BASE 0xd0000000
  14. #define KW_REGISTER(x) (KW_REGS_PHY_BASE + x)
  15. #define KW_OFFSET_REG (INTREG_BASE + 0x20080)
  16. /* undocumented registers */
  17. #define KW_REG_UNDOC_0x1470 (KW_REGISTER(0x1470))
  18. #define KW_REG_UNDOC_0x1478 (KW_REGISTER(0x1478))
  19. #define MVEBU_SDRAM_BASE (KW_REGISTER(0x1500))
  20. #define KW_TWSI_BASE (KW_REGISTER(0x11000))
  21. #define KW_UART0_BASE (KW_REGISTER(0x12000))
  22. #define KW_UART1_BASE (KW_REGISTER(0x12100))
  23. #define KW_MPP_BASE (KW_REGISTER(0x10000))
  24. #define MVEBU_GPIO0_BASE (KW_REGISTER(0x10100))
  25. #define MVEBU_GPIO1_BASE (KW_REGISTER(0x10140))
  26. #define KW_RTC_BASE (KW_REGISTER(0x10300))
  27. #define KW_NANDF_BASE (KW_REGISTER(0x10418))
  28. #define MVEBU_SPI_BASE (KW_REGISTER(0x10600))
  29. #define KW_CPU_WIN_BASE (KW_REGISTER(0x20000))
  30. #define KW_CPU_REG_BASE (KW_REGISTER(0x20100))
  31. #define MVEBU_TIMER_BASE (KW_REGISTER(0x20300))
  32. #define KW_REG_PCIE_BASE (KW_REGISTER(0x40000))
  33. #define KW_USB20_BASE (KW_REGISTER(0x50000))
  34. #define KW_EGIGA0_BASE (KW_REGISTER(0x72000))
  35. #define KW_EGIGA1_BASE (KW_REGISTER(0x76000))
  36. #define KW_SATA_BASE (KW_REGISTER(0x80000))
  37. #define KW_SDIO_BASE (KW_REGISTER(0x90000))
  38. /* Kirkwood Sata controller has two ports */
  39. #define KW_SATA_PORT0_OFFSET 0x2000
  40. #define KW_SATA_PORT1_OFFSET 0x4000
  41. /* Kirkwood GbE controller has two ports */
  42. #define MAX_MVGBE_DEVS 2
  43. #define MVGBE0_BASE KW_EGIGA0_BASE
  44. #define MVGBE1_BASE KW_EGIGA1_BASE
  45. /* Kirkwood USB Host controller */
  46. #define MVUSB0_BASE KW_USB20_BASE
  47. #define MVUSB0_CPU_ATTR_DRAM_CS0 KWCPU_ATTR_DRAM_CS0
  48. #define MVUSB0_CPU_ATTR_DRAM_CS1 KWCPU_ATTR_DRAM_CS1
  49. #define MVUSB0_CPU_ATTR_DRAM_CS2 KWCPU_ATTR_DRAM_CS2
  50. #define MVUSB0_CPU_ATTR_DRAM_CS3 KWCPU_ATTR_DRAM_CS3
  51. /* Kirkwood CPU memory windows */
  52. #define MVCPU_WIN_CTRL_DATA KWCPU_WIN_CTRL_DATA
  53. #define MVCPU_WIN_ENABLE KWCPU_WIN_ENABLE
  54. #define MVCPU_WIN_DISABLE KWCPU_WIN_DISABLE
  55. #if defined (CONFIG_KW88F6281)
  56. #include <asm/arch/kw88f6281.h>
  57. #elif defined (CONFIG_KW88F6192)
  58. #include <asm/arch/kw88f6192.h>
  59. #else
  60. #error "SOC Name not defined"
  61. #endif /* CONFIG_KW88F6281 */
  62. #endif /* CONFIG_FEROCEON_88FR131 */
  63. #endif /* _ASM_ARCH_KIRKWOOD_H */