Lines Matching defs:offset
63 DEFINE_REGSET(OFF, 0); /* offset */
140 unsigned long reg_offset; /* offset to bmaddr */
221 static inline u8 igetbyte(struct intel8x0m *chip, u32 offset)
223 return ioread8(chip->bmaddr + offset);
226 static inline u16 igetword(struct intel8x0m *chip, u32 offset)
228 return ioread16(chip->bmaddr + offset);
231 static inline u32 igetdword(struct intel8x0m *chip, u32 offset)
233 return ioread32(chip->bmaddr + offset);
236 static inline void iputbyte(struct intel8x0m *chip, u32 offset, u8 val)
238 iowrite8(val, chip->bmaddr + offset);
241 static inline void iputword(struct intel8x0m *chip, u32 offset, u16 val)
243 iowrite16(val, chip->bmaddr + offset);
246 static inline void iputdword(struct intel8x0m *chip, u32 offset, u32 val)
248 iowrite32(val, chip->bmaddr + offset);
255 static inline u16 iagetword(struct intel8x0m *chip, u32 offset)
257 return ioread16(chip->addr + offset);
260 static inline void iaputword(struct intel8x0m *chip, u32 offset, u16 val)
262 iowrite16(val, chip->addr + offset);
1031 unsigned int offset;
1084 ichdev->reg_offset = tbl[i].offset;