| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * TI DaVinci EMAC platform support | 
 | 3 |  * | 
 | 4 |  * Author: Kevin Hilman, Deep Root Systems, LLC | 
 | 5 |  * | 
 | 6 |  * 2007 (c) Deep Root Systems, LLC. This file is licensed under | 
 | 7 |  * the terms of the GNU General Public License version 2. This program | 
 | 8 |  * is licensed "as is" without any warranty of any kind, whether express | 
 | 9 |  * or implied. | 
 | 10 |  */ | 
| Sriramakrishnan | 8ee2bf9 | 2009-11-19 15:58:25 +0530 | [diff] [blame] | 11 | #ifndef _LINUX_DAVINCI_EMAC_H | 
 | 12 | #define _LINUX_DAVINCI_EMAC_H | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 13 |  | 
 | 14 | #include <linux/if_ether.h> | 
| Mark A. Greer | b14dc0f | 2009-04-15 12:41:27 -0700 | [diff] [blame] | 15 | #include <linux/memory.h> | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 16 |  | 
| Cyril Chemparathy | f20136e | 2010-09-15 10:11:21 -0400 | [diff] [blame] | 17 | struct mdio_platform_data { | 
 | 18 | 	unsigned long		bus_freq; | 
 | 19 | }; | 
 | 20 |  | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 21 | struct emac_platform_data { | 
 | 22 | 	char mac_addr[ETH_ALEN]; | 
 | 23 | 	u32 ctrl_reg_offset; | 
 | 24 | 	u32 ctrl_mod_reg_offset; | 
 | 25 | 	u32 ctrl_ram_offset; | 
| Sriramakrishnan | ad021ae | 2009-11-19 15:58:27 +0530 | [diff] [blame] | 26 | 	u32 hw_ram_addr; | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 27 | 	u32 ctrl_ram_size; | 
| Cyril Chemparathy | 5d69e00 | 2010-09-15 10:11:24 -0400 | [diff] [blame] | 28 |  | 
 | 29 | 	/* | 
 | 30 | 	 * phy_id can be one of the following: | 
 | 31 | 	 *   - NULL		: use the first phy on the bus, | 
 | 32 | 	 *   - ""		: force to 100/full, no mdio control | 
 | 33 | 	 *   - "<bus>:<addr>"	: use the specified bus and phy | 
 | 34 | 	 */ | 
 | 35 | 	const char *phy_id; | 
 | 36 |  | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 37 | 	u8 rmii_en; | 
 | 38 | 	u8 version; | 
| Sriram | 6a1fef6 | 2011-03-22 02:31:03 +0000 | [diff] [blame] | 39 | 	bool no_bd_ram; | 
| Sriramakrishnan | 01a9af3 | 2009-11-19 15:58:26 +0530 | [diff] [blame] | 40 | 	void (*interrupt_enable) (void); | 
 | 41 | 	void (*interrupt_disable) (void); | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 42 | }; | 
 | 43 |  | 
 | 44 | enum { | 
 | 45 | 	EMAC_VERSION_1,	/* DM644x */ | 
 | 46 | 	EMAC_VERSION_2,	/* DM646x */ | 
 | 47 | }; | 
| Mark A. Greer | b14dc0f | 2009-04-15 12:41:27 -0700 | [diff] [blame] | 48 |  | 
 | 49 | void davinci_get_mac_addr(struct memory_accessor *mem_acc, void *context); | 
| Kevin Hilman | ac7b75b | 2009-05-07 06:19:40 -0700 | [diff] [blame] | 50 | #endif |