orion5x.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2010 Albert ARIBAUD <albert.u.boot@aribaud.net>
  4. *
  5. * Based on original Kirkwood support which is
  6. * (C) Copyright 2009
  7. * Marvell Semiconductor <www.marvell.com>
  8. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  9. *
  10. * Header file for Marvell's Orion SoC with Feroceon CPU core.
  11. */
  12. #ifndef _ASM_ARCH_ORION5X_H
  13. #define _ASM_ARCH_ORION5X_H
  14. #if defined(CONFIG_FEROCEON)
  15. /* SOC specific definations */
  16. #define ORION5X_REGISTER(x) (ORION5X_REGS_PHY_BASE + x)
  17. /* Documented registers */
  18. #define ORION5X_DRAM_BASE (ORION5X_REGISTER(0x01500))
  19. #define ORION5X_TWSI_BASE (ORION5X_REGISTER(0x11000))
  20. #define ORION5X_UART0_BASE (ORION5X_REGISTER(0x12000))
  21. #define ORION5X_UART1_BASE (ORION5X_REGISTER(0x12100))
  22. #define ORION5X_MPP_BASE (ORION5X_REGISTER(0x10000))
  23. #define ORION5X_GPIO_BASE (ORION5X_REGISTER(0x10100))
  24. #define ORION5X_CPU_WIN_BASE (ORION5X_REGISTER(0x20000))
  25. #define ORION5X_CPU_REG_BASE (ORION5X_REGISTER(0x20100))
  26. #define ORION5X_TIMER_BASE (ORION5X_REGISTER(0x20300))
  27. #define ORION5X_REG_PCI_BASE (ORION5X_REGISTER(0x30000))
  28. #define ORION5X_REG_PCIE_BASE (ORION5X_REGISTER(0x40000))
  29. #define ORION5X_USB20_PORT0_BASE (ORION5X_REGISTER(0x50000))
  30. #define ORION5X_USB20_PORT1_BASE (ORION5X_REGISTER(0xA0000))
  31. #define ORION5X_EGIGA_BASE (ORION5X_REGISTER(0x72000))
  32. #define ORION5X_SATA_BASE (ORION5X_REGISTER(0x80000))
  33. #define ORION5X_SATA_PORT0_OFFSET 0x2000
  34. #define ORION5X_SATA_PORT1_OFFSET 0x4000
  35. /* Orion5x GbE controller has a single port */
  36. #define MAX_MVGBE_DEVS 1
  37. #define MVGBE0_BASE ORION5X_EGIGA_BASE
  38. /* Orion5x USB Host controller is port 1 */
  39. #define MVUSB0_BASE ORION5X_USB20_HOST_PORT_BASE
  40. #define MVUSB0_CPU_ATTR_DRAM_CS0 ORION5X_ATTR_DRAM_CS0
  41. #define MVUSB0_CPU_ATTR_DRAM_CS1 ORION5X_ATTR_DRAM_CS1
  42. #define MVUSB0_CPU_ATTR_DRAM_CS2 ORION5X_ATTR_DRAM_CS2
  43. #define MVUSB0_CPU_ATTR_DRAM_CS3 ORION5X_ATTR_DRAM_CS3
  44. /* Kirkwood CPU memory windows */
  45. #define MVCPU_WIN_CTRL_DATA ORION5X_CPU_WIN_CTRL_DATA
  46. #define MVCPU_WIN_ENABLE ORION5X_WIN_ENABLE
  47. #define MVCPU_WIN_DISABLE ORION5X_WIN_DISABLE
  48. #define CONFIG_MAX_RAM_BANK_SIZE (64*1024*1024)
  49. /* include here SoC variants. 5181, 5281, 6183 should go here when
  50. adding support for them, and this comment should then be updated. */
  51. #if defined(CONFIG_88F5182)
  52. #include <asm/arch/mv88f5182.h>
  53. #else
  54. #error "SOC Name not defined"
  55. #endif
  56. #endif /* CONFIG_FEROCEON */
  57. #endif /* _ASM_ARCH_ORION5X_H */