2 * Realtek RTL8366 SMI interface driver defines
4 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #ifndef _RTL8366_SMI_H
12 #define _RTL8366_SMI_H
14 #include <linux/phy.h>
16 struct rtl8366_smi_ops
;
20 struct device
*parent
;
21 unsigned int gpio_sda
;
22 unsigned int gpio_sck
;
24 struct mii_bus
*mii_bus
;
25 int mii_irq
[PHY_MAX_ADDR
];
27 struct rtl8366_smi_ops
*ops
;
30 struct rtl8366_smi_ops
{
31 int (*detect
)(struct rtl8366_smi
*smi
);
33 int (*mii_read
)(struct mii_bus
*bus
, int addr
, int reg
);
34 int (*mii_write
)(struct mii_bus
*bus
, int addr
, int reg
, u16 val
);
37 int rtl8366_smi_init(struct rtl8366_smi
*smi
);
38 void rtl8366_smi_cleanup(struct rtl8366_smi
*smi
);
39 int rtl8366_smi_write_reg(struct rtl8366_smi
*smi
, u32 addr
, u32 data
);
40 int rtl8366_smi_read_reg(struct rtl8366_smi
*smi
, u32 addr
, u32
*data
);
42 #endif /* _RTL8366_SMI_H */
This page took 0.039902 seconds and 5 git commands to generate.