orion5x.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (C) 2010 Albert ARIBAUD <albert.aribaud@free.fr>
  3. *
  4. * Based on original Kirkwood support which is
  5. * (C) Copyright 2009
  6. * Marvell Semiconductor <www.marvell.com>
  7. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  8. *
  9. * Header file for Marvell's Orion SoC with Feroceon CPU core.
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  27. * MA 02110-1301 USA
  28. */
  29. #ifndef _ASM_ARCH_ORION5X_H
  30. #define _ASM_ARCH_ORION5X_H
  31. #ifndef __ASSEMBLY__
  32. #include <asm/types.h>
  33. #include <asm/io.h>
  34. #endif /* __ASSEMBLY__ */
  35. #if defined(CONFIG_FEROCEON)
  36. #include <asm/arch/cpu.h>
  37. /* SOC specific definations */
  38. #define ORION5X_REGISTER(x) (ORION5X_REGS_PHY_BASE + x)
  39. /* Documented registers */
  40. #define ORION5X_TWSI_BASE (ORION5X_REGISTER(0x11000))
  41. #define ORION5X_UART0_BASE (ORION5X_REGISTER(0x12000))
  42. #define ORION5X_UART1_BASE (ORION5X_REGISTER(0x12100))
  43. #define ORION5X_MPP_BASE (ORION5X_REGISTER(0x10000))
  44. #define ORION5X_GPIO_BASE (ORION5X_REGISTER(0x10100))
  45. #define ORION5X_CPU_WIN_BASE (ORION5X_REGISTER(0x20000))
  46. #define ORION5X_CPU_REG_BASE (ORION5X_REGISTER(0x20100))
  47. #define ORION5X_TIMER_BASE (ORION5X_REGISTER(0x20300))
  48. #define ORION5X_REG_PCI_BASE (ORION5X_REGISTER(0x30000))
  49. #define ORION5X_REG_PCIE_BASE (ORION5X_REGISTER(0x40000))
  50. #define ORION5X_USB20_PORT0_BASE (ORION5X_REGISTER(0x50000))
  51. #define ORION5X_USB20_PORT1_BASE (ORION5X_REGISTER(0xA0000))
  52. #define ORION5X_EGIGA_BASE (ORION5X_REGISTER(0x72000))
  53. #define ORION5X_SATA_BASE (ORION5X_REGISTER(0x80000))
  54. #define ORION5X_SATA_PORT0_OFFSET 0x2000
  55. #define ORION5X_SATA_PORT1_OFFSET 0x4000
  56. /* Orion5x GbE controller has a single port */
  57. #define MAX_MVGBE_DEVS 1
  58. #define MVGBE0_BASE ORION5X_EGIGA_BASE
  59. #define CONFIG_MAX_RAM_BANK_SIZE (64*1024*1024)
  60. /* include here SoC variants. 5181, 5281, 6183 should go here when
  61. adding support for them, and this comment should then be updated. */
  62. #if defined(CONFIG_88F5182)
  63. #include <asm/arch/mv88f5182.h>
  64. #else
  65. #error "SOC Name not defined"
  66. #endif
  67. #endif /* CONFIG_FEROCEON */
  68. #endif /* _ASM_ARCH_ORION5X_H */