Lines Matching defs:port

243 #define isa_inb(port)      in_8(isa_itb(port))  argument
244 #define isa_inw(port) (ISA_SEX ? in_be16(isa_itw(port)) : in_le16(isa_itw(port))) argument
245 #define isa_inl(port) (ISA_SEX ? in_be32(isa_itl(port)) : in_le32(isa_itl(port))) argument
246 #define isa_outb(val,port) out_8(isa_itb(port),(val)) argument
247 #define isa_outw(val,port) (ISA_SEX ? out_be16(isa_itw(port),(val)) : out_le16(isa_itw(port),(val))) argument
248 #define isa_outl(val,port) (ISA_SEX ? out_be32(isa_itl(port),(val)) : out_le32(isa_itl(port),(val))) argument
260 #define isa_rom_inb(port) rom_in_8(isa_itb(port)) argument
261 #define isa_rom_inw(port) \ argument
265 #define isa_rom_outb(val, port) rom_out_8(isa_itb(port), (val)) argument
266 #define isa_rom_outw(val, port) \ argument
313 #define isa_insb(port, buf, nr) raw_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
314 #define isa_outsb(port, buf, nr) raw_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
316 #define isa_insw(port, buf, nr) \ argument
320 #define isa_outsw(port, buf, nr) \ argument
324 #define isa_insl(port, buf, nr) \ argument
328 #define isa_outsl(port, buf, nr) \ argument
339 #define isa_rom_insb(port, buf, nr) raw_rom_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
341 #define isa_rom_insw(port, buf, nr) \ argument
345 #define isa_rom_outsb(port, buf, nr) raw_rom_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
347 #define isa_rom_outsw(port, buf, nr) \ argument
387 #define inb(port) ((port) < 1024 ? isa_rom_inb(port) : in_8(port)) argument
388 #define inb_p(port) ((port) < 1024 ? isa_rom_inb_p(port) : in_8(port)) argument
389 #define inw(port) ((port) < 1024 ? isa_rom_inw(port) : in_le16(port)) argument
390 #define inw_p(port) ((port) < 1024 ? isa_rom_inw_p(port) : in_le16(port)) argument
394 #define outb(val, port) ((port) < 1024 ? isa_rom_outb((val), (port)) : out_8((port), (val))) argument
395 #define outb_p(val, port) ((port) < 1024 ? isa_rom_outb_p((val), (port)) : out_8((port), (val))) argument
396 #define outw(val, port) ((port) < 1024 ? isa_rom_outw((val), (port)) : out_le16((port), (val))) argument
397 #define outw_p(val, port) ((port) < 1024 ? isa_rom_outw_p((val), (port)) : out_le16((port), (val))) argument
401 #define insb(port, buf, nr) ((port) < 1024 ? isa_rom_insb((port), (buf), (nr)) : isa_insb((port), (… argument
402 #define insw(port, buf, nr) ((port) < 1024 ? isa_rom_insw((port), (buf), (nr)) : isa_insw((port), (… argument
404 #define outsb(port, buf, nr) ((port) < 1024 ? isa_rom_outsb((port), (buf), (nr)) : isa_outsb((port)… argument
405 #define outsw(port, buf, nr) ((port) < 1024 ? isa_rom_outsw((port), (buf), (nr)) : isa_outsw((port)… argument
418 #define inb(port) 0xff argument
419 #define inb_p(port) 0xff argument
420 #define outb(val,port) ((void)0) argument
421 #define outb_p(val,port) ((void)0) argument
422 #define inw(port) 0xffff argument
423 #define inw_p(port) 0xffff argument
424 #define outw(val,port) ((void)0) argument
425 #define outw_p(val,port) ((void)0) argument
426 #define inl(port) 0xffffffffUL argument
427 #define inl_p(port) 0xffffffffUL argument
428 #define outl(val,port) ((void)0) argument
429 #define outl_p(val,port) ((void)0) argument
431 #define insb(port,buf,nr) ((void)0) argument
432 #define outsb(port,buf,nr) ((void)0) argument
433 #define insw(port,buf,nr) ((void)0) argument
434 #define outsw(port,buf,nr) ((void)0) argument
435 #define insl(port,buf,nr) ((void)0) argument
436 #define outsl(port,buf,nr) ((void)0) argument
451 #define readsb(port, buf, nr) raw_insb((port), (u8 *)(buf), (nr)) argument
452 #define readsw(port, buf, nr) raw_insw((port), (u16 *)(buf), (nr)) argument
453 #define readsl(port, buf, nr) raw_insl((port), (u32 *)(buf), (nr)) argument
454 #define writesb(port, buf, nr) raw_outsb((port), (u8 *)(buf), (nr)) argument
455 #define writesw(port, buf, nr) raw_outsw((port), (u16 *)(buf), (nr)) argument
456 #define writesl(port, buf, nr) raw_outsl((port), (u32 *)(buf), (nr)) argument
513 static inline void __iomem *ioport_map(unsigned long port, unsigned int nr) in ioport_map()