Lines Matching refs:value
32 * @default_syscon_value: The default value of the EMAC register in syscon
33 * This value is used for disabling properly EMAC
34 * and used as a good starting value in case of the
42 * @rx_delay_max: Maximum raw value for RX delay chain
43 * @tx_delay_max: Maximum raw value for TX delay chain
46 * value of zero indicates this is not supported.
343 u32 value = readl(ioaddr + EMAC_INT_EN);
346 value |= EMAC_RX_INT;
348 value |= EMAC_TX_INT;
350 writel(value, ioaddr + EMAC_INT_EN);
356 u32 value = readl(ioaddr + EMAC_INT_EN);
359 value &= ~EMAC_RX_INT;
361 value &= ~EMAC_TX_INT;
363 writel(value, ioaddr + EMAC_INT_EN);
837 * 'current_child' is the current value of the mux register
838 * 'desired_child' is the value of the 'reg' property of the target child MDIO
878 /* After changing syscon value, the MAC need reset or it will
879 * use the last value (and so the last PHY set).
919 "Current syscon value is not the default %x (expect %x)\n",
1036 u32 value = readl(ioaddr + EMAC_BASIC_CTL0);
1039 value |= EMAC_LOOPBACK;
1041 value &= ~EMAC_LOOPBACK;
1043 writel(value, ioaddr + EMAC_BASIC_CTL0);