mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-12 08:00:09 +00:00
TI Davinci EMAC : add platform specific interrupt enable/disable logic.
On certain SOCs, the EMAC controller is interfaced with a wrapper logic for handling interrupts. This patch implements a platform specific hook to cater to platforms that require custom interrupt handling logic Signed-off-by: Sriramakrishnan <srk@ti.com> Acked-by: Chaithrika U S <chaithrika@ti.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
This commit is contained in:
parent
8ee2bf9ab7
commit
01a9af36cd
@ -487,6 +487,9 @@ struct emac_priv {
|
||||
struct mii_bus *mii_bus;
|
||||
struct phy_device *phydev;
|
||||
spinlock_t lock;
|
||||
/*platform specific members*/
|
||||
void (*int_enable) (void);
|
||||
void (*int_disable) (void);
|
||||
};
|
||||
|
||||
/* clock frequency for EMAC */
|
||||
@ -1001,6 +1004,8 @@ static void emac_int_disable(struct emac_priv *priv)
|
||||
emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
|
||||
emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
|
||||
/* NOTE: Rx Threshold and Misc interrupts are not disabled */
|
||||
if (priv->int_disable)
|
||||
priv->int_disable();
|
||||
|
||||
local_irq_restore(flags);
|
||||
|
||||
@ -1020,6 +1025,9 @@ static void emac_int_disable(struct emac_priv *priv)
|
||||
static void emac_int_enable(struct emac_priv *priv)
|
||||
{
|
||||
if (priv->version == EMAC_VERSION_2) {
|
||||
if (priv->int_enable)
|
||||
priv->int_enable();
|
||||
|
||||
emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
|
||||
emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
|
||||
|
||||
@ -2659,6 +2667,9 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev)
|
||||
priv->phy_mask = pdata->phy_mask;
|
||||
priv->rmii_en = pdata->rmii_en;
|
||||
priv->version = pdata->version;
|
||||
priv->int_enable = pdata->interrupt_enable;
|
||||
priv->int_disable = pdata->interrupt_disable;
|
||||
|
||||
emac_dev = &ndev->dev;
|
||||
/* Get EMAC platform data */
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
|
@ -25,6 +25,8 @@ struct emac_platform_data {
|
||||
u32 mdio_max_freq;
|
||||
u8 rmii_en;
|
||||
u8 version;
|
||||
void (*interrupt_enable) (void);
|
||||
void (*interrupt_disable) (void);
|
||||
};
|
||||
|
||||
enum {
|
||||
|
Loading…
x
Reference in New Issue
Block a user