sheevaplug.h 679 B

12345678910111213141516171819202122232425
  1. /*
  2. * (C) Copyright 2009
  3. * Marvell Semiconductor <www.marvell.com>
  4. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __SHEEVAPLUG_H
  9. #define __SHEEVAPLUG_H
  10. #define SHEEVAPLUG_OE_LOW (~(0))
  11. #define SHEEVAPLUG_OE_HIGH (~(0))
  12. #define SHEEVAPLUG_OE_VAL_LOW (1 << 29) /* USB_PWEN low */
  13. #define SHEEVAPLUG_OE_VAL_HIGH (1 << 17) /* LED pin high */
  14. /* PHY related */
  15. #define MV88E1116_LED_FCTRL_REG 10
  16. #define MV88E1116_CPRSP_CR3_REG 21
  17. #define MV88E1116_MAC_CTRL_REG 21
  18. #define MV88E1116_PGADR_REG 22
  19. #define MV88E1116_RGMII_TXTM_CTRL (1 << 4)
  20. #define MV88E1116_RGMII_RXTM_CTRL (1 << 5)
  21. #endif /* __SHEEVAPLUG_H */