Lines Matching refs:offset
251 static inline u8 igetbyte(struct intel8x0m *chip, u32 offset) in igetbyte() argument
253 return ioread8(chip->bmaddr + offset); in igetbyte()
256 static inline u16 igetword(struct intel8x0m *chip, u32 offset) in igetword() argument
258 return ioread16(chip->bmaddr + offset); in igetword()
261 static inline u32 igetdword(struct intel8x0m *chip, u32 offset) in igetdword() argument
263 return ioread32(chip->bmaddr + offset); in igetdword()
266 static inline void iputbyte(struct intel8x0m *chip, u32 offset, u8 val) in iputbyte() argument
268 iowrite8(val, chip->bmaddr + offset); in iputbyte()
271 static inline void iputword(struct intel8x0m *chip, u32 offset, u16 val) in iputword() argument
273 iowrite16(val, chip->bmaddr + offset); in iputword()
276 static inline void iputdword(struct intel8x0m *chip, u32 offset, u32 val) in iputdword() argument
278 iowrite32(val, chip->bmaddr + offset); in iputdword()
285 static inline u16 iagetword(struct intel8x0m *chip, u32 offset) in iagetword() argument
287 return ioread16(chip->addr + offset); in iagetword()
290 static inline void iaputword(struct intel8x0m *chip, u32 offset, u16 val) in iaputword() argument
292 iowrite16(val, chip->addr + offset); in iaputword()
1113 unsigned int offset; member
1200 ichdev->reg_offset = tbl[i].offset; in snd_intel8x0m_create()