bgmac: support Ethernet device on BCM47094 SoC
[deliverable/linux.git] / drivers / net / ethernet / broadcom / bgmac.c
index 230f8e6209e57f22e1c5fc4c3cf3a6ade4aca95f..99b30a952b38736a825efc5149aa9027f6fae64d 100644 (file)
@@ -30,6 +30,7 @@ static inline bool bgmac_is_bcm4707_family(struct bgmac *bgmac)
 {
        switch (bgmac->core->bus->chipinfo.id) {
        case BCMA_CHIP_ID_BCM4707:
+       case BCMA_CHIP_ID_BCM47094:
        case BCMA_CHIP_ID_BCM53018:
                return true;
        default:
@@ -1052,8 +1053,9 @@ static void bgmac_chip_reset(struct bgmac *bgmac)
            (ci->id == BCMA_CHIP_ID_BCM53572 && ci->pkg == BCMA_PKG_ID_BCM47188))
                iost &= ~BGMAC_BCMA_IOST_ATTACHED;
 
-       /* 3GMAC: for BCM4707, only do core reset at bgmac_probe() */
-       if (ci->id != BCMA_CHIP_ID_BCM4707) {
+       /* 3GMAC: for BCM4707 & BCM47094, only do core reset at bgmac_probe() */
+       if (ci->id != BCMA_CHIP_ID_BCM4707 &&
+           ci->id != BCMA_CHIP_ID_BCM47094) {
                flags = 0;
                if (iost & BGMAC_BCMA_IOST_ATTACHED) {
                        flags = BGMAC_BCMA_IOCTL_SW_CLKEN;
This page took 0.027091 seconds and 5 git commands to generate.