]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/davinci_emac.h
kprobes: Verify jprobe entry point
[net-next-2.6.git] / include / linux / davinci_emac.h
CommitLineData
ac7b75b5
KH
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 */
8ee2bf9a
S
11#ifndef _LINUX_DAVINCI_EMAC_H
12#define _LINUX_DAVINCI_EMAC_H
ac7b75b5
KH
13
14#include <linux/if_ether.h>
b14dc0f9 15#include <linux/memory.h>
ac7b75b5
KH
16
17struct emac_platform_data {
18 char mac_addr[ETH_ALEN];
19 u32 ctrl_reg_offset;
20 u32 ctrl_mod_reg_offset;
21 u32 ctrl_ram_offset;
ad021ae8 22 u32 hw_ram_addr;
ac7b75b5
KH
23 u32 mdio_reg_offset;
24 u32 ctrl_ram_size;
25 u32 phy_mask;
26 u32 mdio_max_freq;
27 u8 rmii_en;
28 u8 version;
01a9af36
S
29 void (*interrupt_enable) (void);
30 void (*interrupt_disable) (void);
ac7b75b5
KH
31};
32
33enum {
34 EMAC_VERSION_1, /* DM644x */
35 EMAC_VERSION_2, /* DM646x */
36};
ac7b75b5 37
b14dc0f9
MG
38void davinci_get_mac_addr(struct memory_accessor *mem_acc, void *context);
39#endif