mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-12 00:00:16 +02:00
ramips_eth: pass sys_clk via platform_data
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19462 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
6fdc10668d
commit
1630830019
@ -24,6 +24,7 @@ struct ramips_eth_platform_data
|
|||||||
unsigned char mac[6];
|
unsigned char mac[6];
|
||||||
void (*reset_fe)(void);
|
void (*reset_fe)(void);
|
||||||
int min_pkt_len;
|
int min_pkt_len;
|
||||||
|
unsigned long sys_freq;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* _RAMIPS_ETH_PLATFORM_H */
|
#endif /* _RAMIPS_ETH_PLATFORM_H */
|
||||||
|
@ -118,7 +118,7 @@ static struct resource rt305x_eth_resources[] = {
|
|||||||
static struct ramips_eth_platform_data ramips_eth_data = {
|
static struct ramips_eth_platform_data ramips_eth_data = {
|
||||||
.mac = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55 },
|
.mac = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55 },
|
||||||
.reset_fe = rt305x_fe_reset,
|
.reset_fe = rt305x_fe_reset,
|
||||||
.min_pkt_len = 64
|
.min_pkt_len = 64,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device rt305x_eth_device = {
|
static struct platform_device rt305x_eth_device = {
|
||||||
@ -132,5 +132,7 @@ static struct platform_device rt305x_eth_device = {
|
|||||||
|
|
||||||
void __init rt305x_register_ethernet(void)
|
void __init rt305x_register_ethernet(void)
|
||||||
{
|
{
|
||||||
|
ramips_eth_data.sys_freq = rt305x_sys_freq;
|
||||||
|
|
||||||
platform_device_register(&rt305x_eth_device);
|
platform_device_register(&rt305x_eth_device);
|
||||||
}
|
}
|
||||||
|
@ -332,7 +332,7 @@ ramips_eth_open(struct net_device *dev)
|
|||||||
RAMIPS_PDMA_GLO_CFG);
|
RAMIPS_PDMA_GLO_CFG);
|
||||||
ramips_fe_wr((ramips_fe_rr(RAMIPS_FE_GLO_CFG) &
|
ramips_fe_wr((ramips_fe_rr(RAMIPS_FE_GLO_CFG) &
|
||||||
~(RAMIPS_US_CYC_CNT_MASK << RAMIPS_US_CYC_CNT_SHIFT)) |
|
~(RAMIPS_US_CYC_CNT_MASK << RAMIPS_US_CYC_CNT_SHIFT)) |
|
||||||
((rt305x_sys_freq / RAMIPS_US_CYC_CNT_DIVISOR) << RAMIPS_US_CYC_CNT_SHIFT),
|
((priv->plat->sys_freq / RAMIPS_US_CYC_CNT_DIVISOR) << RAMIPS_US_CYC_CNT_SHIFT),
|
||||||
RAMIPS_FE_GLO_CFG);
|
RAMIPS_FE_GLO_CFG);
|
||||||
|
|
||||||
tasklet_init(&priv->tx_housekeeping_tasklet, ramips_eth_tx_housekeeping,
|
tasklet_init(&priv->tx_housekeeping_tasklet, ramips_eth_tx_housekeeping,
|
||||||
|
Loading…
Reference in New Issue
Block a user