Lines Matching refs:bottom
160 u32 bottom; in macb_set_hwaddr() local
163 bottom = cpu_to_le32(*((u32 *)bp->dev->dev_addr)); in macb_set_hwaddr()
164 macb_or_gem_writel(bp, SA1B, bottom); in macb_set_hwaddr()
180 u32 bottom; in macb_get_hwaddr() local
189 bottom = macb_or_gem_readl(bp, SA1B + i * 8); in macb_get_hwaddr()
193 addr[5] = bottom & 0xff; in macb_get_hwaddr()
194 addr[4] = (bottom >> 8) & 0xff; in macb_get_hwaddr()
195 addr[3] = (bottom >> 16) & 0xff; in macb_get_hwaddr()
196 addr[2] = (bottom >> 24) & 0xff; in macb_get_hwaddr()
200 addr[0] = bottom & 0xff; in macb_get_hwaddr()
201 addr[1] = (bottom >> 8) & 0xff; in macb_get_hwaddr()
202 addr[2] = (bottom >> 16) & 0xff; in macb_get_hwaddr()
203 addr[3] = (bottom >> 24) & 0xff; in macb_get_hwaddr()