Lines Matching defs:command
118 3) compile de4x5.c, but include -DMODULE in the command line to ensure
309 Fix boot command probe bug in alloc_device() as
373 a module's command line or a compiled in #define.
585 ** Allow per adapter set up. For modules this is simply a command line
959 static void srom_latch(u_int command, u_long address);
960 static void srom_command(u_int command, u_long address);
961 static void srom_address(u_int command, u_long address, u_char offset);
962 static short srom_data(u_int command, u_long address);
963 /*static void srom_busy(u_int command, u_long address);*/
964 static void sendto_srom(u_int command, u_long addr);
977 static void sendto_mii(u32 command, int data, u_long ioaddr);
978 static int getfrom_mii(u32 command, u_long ioaddr);
4211 srom_latch(u_int command, u_long addr)
4213 sendto_srom(command, addr);
4214 sendto_srom(command | DT_CLK, addr);
4215 sendto_srom(command, addr);
4219 srom_command(u_int command, u_long addr)
4221 srom_latch(command, addr);
4222 srom_latch(command, addr);
4223 srom_latch((command & 0x0000ff00) | DT_CS, addr);
4227 srom_address(u_int command, u_long addr, u_char offset)
4233 srom_latch(command | ((a & 0x80) ? DT_IN : 0), addr);
4241 srom_data(u_int command, u_long addr)
4248 sendto_srom(command | DT_CLK, addr);
4250 sendto_srom(command, addr);
4255 sendto_srom(command & 0x0000ff00, addr);
4262 srom_busy(u_int command, u_long addr)
4264 sendto_srom((command & 0x0000ff00) | DT_CS, addr);
4270 sendto_srom(command & 0x0000ff00, addr);
4275 sendto_srom(u_int command, u_long addr)
4277 outl(command, addr);
4898 sendto_mii(u32 command, int data, u_long ioaddr)
4903 outl(command | j, ioaddr);
4905 outl(command | MII_MDC | j, ioaddr);
4910 getfrom_mii(u32 command, u_long ioaddr)
4912 outl(command, ioaddr);
4914 outl(command | MII_MDC, ioaddr);