openrd_base.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * (C) Copyright 2009
  3. * Net Insight <www.netinsight.net>
  4. * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
  5. *
  6. * Based on sheevaplug.h:
  7. * (C) Copyright 2009
  8. * Marvell Semiconductor <www.marvell.com>
  9. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  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 __OPENRD_BASE_H
  30. #define __OPENRD_BASE_H
  31. #define OPENRD_OE_LOW (~(1<<28)) /* RS232 / RS485 */
  32. #define OPENRD_OE_HIGH (~(1<<2)) /* SD / UART1 */
  33. #define OPENRD_OE_VAL_LOW (0) /* Sel RS232 */
  34. #define OPENRD_OE_VAL_HIGH (1 << 2) /* Sel SD */
  35. /* PHY related */
  36. #define MV88E1116_LED_FCTRL_REG 10
  37. #define MV88E1116_CPRSP_CR3_REG 21
  38. #define MV88E1116_MAC_CTRL_REG 21
  39. #define MV88E1116_PGADR_REG 22
  40. #define MV88E1116_RGMII_TXTM_CTRL (1 << 4)
  41. #define MV88E1116_RGMII_RXTM_CTRL (1 << 5)
  42. #endif /* __OPENRD_BASE_H */