dns325.h 827 B

12345678910111213141516171819202122232425262728293031
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2011
  4. * Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net>
  5. *
  6. * Based on Kirkwood support:
  7. * (C) Copyright 2009
  8. * Marvell Semiconductor <www.marvell.com>
  9. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  10. */
  11. #ifndef __DNS325_H
  12. #define __DNS325_H
  13. /* GPIO configuration */
  14. #define DNS325_OE_LOW 0x00000000
  15. #define DNS325_OE_HIGH 0x00039604
  16. #define DNS325_OE_VAL_LOW 0x38000000 /* disable leds */
  17. #define DNS325_OE_VAL_HIGH 0x00000800 /* disable leds */
  18. #define DNS325_GPIO_LED_POWER 26
  19. #define DNS325_GPIO_SATA0_EN 39
  20. #define DNS325_GPIO_SATA1_EN 40
  21. /* PHY related */
  22. #define MV88E1116_MAC_CTRL_REG 21
  23. #define MV88E1116_PGADR_REG 22
  24. #define MV88E1116_RGMII_TXTM_CTRL (1 << 4)
  25. #define MV88E1116_RGMII_RXTM_CTRL (1 << 5)
  26. #endif /* __DNS325_H */