1 /* 2 * Copyright (C) 2011 3 * Stefan Herbrechtsmeier <stefan@code.herbrechtsmeier.net> 4 * 5 * Based on Kirkwood support: 6 * (C) Copyright 2009 7 * Marvell Semiconductor <www.marvell.com> 8 * Written-by: Prafulla Wadaskar <prafulla@marvell.com> 9 * 10 * See file CREDITS for list of people who contributed to this 11 * project. 12 * 13 * This program is free software; you can redistribute it and/or 14 * modify it under the terms of the GNU General Public License as 15 * published by the Free Software Foundation; either version 2 of 16 * the License, or (at your option) any later version. 17 * 18 * This program is distributed in the hope that it will be useful, 19 * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 * GNU General Public License for more details. 22 * 23 * You should have received a copy of the GNU General Public License 24 * along with this program; if not, write to the Free Software 25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 26 * MA 02110-1301 USA 27 */ 28 29 #ifndef __DNS325_H 30 #define __DNS325_H 31 32 /* GPIO configuration */ 33 #define DNS325_OE_LOW 0x00000000 34 #define DNS325_OE_HIGH 0x00039604 35 #define DNS325_OE_VAL_LOW 0x38000000 /* disable leds */ 36 #define DNS325_OE_VAL_HIGH 0x00000800 /* disable leds */ 37 38 #define DNS325_GPIO_LED_POWER 26 39 #define DNS325_GPIO_SATA0_EN 39 40 #define DNS325_GPIO_SATA1_EN 40 41 42 /* PHY related */ 43 #define MV88E1116_MAC_CTRL_REG 21 44 #define MV88E1116_PGADR_REG 22 45 #define MV88E1116_RGMII_TXTM_CTRL (1 << 4) 46 #define MV88E1116_RGMII_RXTM_CTRL (1 << 5) 47 48 #endif /* __DNS325_H */ 49