Lines Matching +full:64 +full:bit

31 #define XGPIO_GIER_IE		BIT(31)
63 DECLARE_BITMAP(hw_map, 64);
64 DECLARE_BITMAP(sw_map, 64);
65 DECLARE_BITMAP(state, 64);
66 DECLARE_BITMAP(last_irq_read, 64);
67 DECLARE_BITMAP(dir, 64);
70 DECLARE_BITMAP(enable, 64);
71 DECLARE_BITMAP(rising_edge, 64);
72 DECLARE_BITMAP(falling_edge, 64);
76 static inline int xgpio_from_bit(struct xgpio_instance *chip, int bit) in xgpio_from_bit() argument
78 return bitmap_bitremap(bit, chip->hw_map, chip->sw_map, 64); in xgpio_from_bit()
83 return bitmap_bitremap(gpio, chip->sw_map, chip->hw_map, 64); in xgpio_to_bit()
86 static inline u32 xgpio_get_value32(const unsigned long *map, int bit) in xgpio_get_value32() argument
88 const size_t index = BIT_WORD(bit); in xgpio_get_value32()
89 const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5); in xgpio_get_value32()
94 static inline void xgpio_set_value32(unsigned long *map, int bit, u32 v) in xgpio_set_value32() argument
96 const size_t index = BIT_WORD(bit); in xgpio_set_value32()
97 const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5); in xgpio_set_value32()
115 static void xgpio_read_ch(struct xgpio_instance *chip, int reg, int bit, unsigned long *a) in xgpio_read_ch() argument
117 void __iomem *addr = chip->regs + reg + xgpio_regoffset(chip, bit / 32); in xgpio_read_ch()
119 xgpio_set_value32(a, bit, xgpio_readreg(addr)); in xgpio_read_ch()
122 static void xgpio_write_ch(struct xgpio_instance *chip, int reg, int bit, unsigned long *a) in xgpio_write_ch() argument
124 void __iomem *addr = chip->regs + reg + xgpio_regoffset(chip, bit / 32); in xgpio_write_ch()
126 xgpio_writereg(addr, xgpio_get_value32(a, bit)); in xgpio_write_ch()
131 int bit, lastbit = xgpio_to_bit(chip, chip->gc.ngpio - 1); in xgpio_read_ch_all() local
133 for (bit = 0; bit <= lastbit ; bit += 32) in xgpio_read_ch_all()
134 xgpio_read_ch(chip, reg, bit, a); in xgpio_read_ch_all()
139 int bit, lastbit = xgpio_to_bit(chip, chip->gc.ngpio - 1); in xgpio_write_ch_all() local
141 for (bit = 0; bit <= lastbit ; bit += 32) in xgpio_write_ch_all()
142 xgpio_write_ch(chip, reg, bit, a); in xgpio_write_ch_all()
159 int bit = xgpio_to_bit(chip, gpio); in xgpio_get() local
160 DECLARE_BITMAP(state, 64); in xgpio_get()
162 xgpio_read_ch(chip, XGPIO_DATA_OFFSET, bit, state); in xgpio_get()
164 return test_bit(bit, state); in xgpio_get()
180 int bit = xgpio_to_bit(chip, gpio); in xgpio_set() local
185 __assign_bit(bit, chip->state, val); in xgpio_set()
187 xgpio_write_ch(chip, XGPIO_DATA_OFFSET, bit, chip->state); in xgpio_set()
204 DECLARE_BITMAP(hw_mask, 64); in xgpio_set_multiple()
205 DECLARE_BITMAP(hw_bits, 64); in xgpio_set_multiple()
206 DECLARE_BITMAP(state, 64); in xgpio_set_multiple()
210 bitmap_remap(hw_mask, mask, chip->sw_map, chip->hw_map, 64); in xgpio_set_multiple()
211 bitmap_remap(hw_bits, bits, chip->sw_map, chip->hw_map, 64); in xgpio_set_multiple()
215 bitmap_replace(state, chip->state, hw_bits, hw_mask, 64); in xgpio_set_multiple()
219 bitmap_copy(chip->state, state, 64); in xgpio_set_multiple()
237 int bit = xgpio_to_bit(chip, gpio); in xgpio_dir_in() local
241 /* Set the GPIO bit in shadow register and set direction as input */ in xgpio_dir_in()
242 __set_bit(bit, chip->dir); in xgpio_dir_in()
243 xgpio_write_ch(chip, XGPIO_TRI_OFFSET, bit, chip->dir); in xgpio_dir_in()
266 int bit = xgpio_to_bit(chip, gpio); in xgpio_dir_out() local
271 __assign_bit(bit, chip->state, val); in xgpio_dir_out()
272 xgpio_write_ch(chip, XGPIO_DATA_OFFSET, bit, chip->state); in xgpio_dir_out()
274 /* Clear the GPIO bit in shadow register and set direction as output */ in xgpio_dir_out()
275 __clear_bit(bit, chip->dir); in xgpio_dir_out()
276 xgpio_write_ch(chip, XGPIO_TRI_OFFSET, bit, chip->dir); in xgpio_dir_out()
398 int bit = xgpio_to_bit(chip, irq_offset); in xgpio_irq_mask() local
399 u32 mask = BIT(bit / 32), temp; in xgpio_irq_mask()
403 __clear_bit(bit, chip->enable); in xgpio_irq_mask()
405 if (xgpio_get_value32(chip->enable, bit) == 0) { in xgpio_irq_mask()
425 int bit = xgpio_to_bit(chip, irq_offset); in xgpio_irq_unmask() local
426 u32 old_enable = xgpio_get_value32(chip->enable, bit); in xgpio_irq_unmask()
427 u32 mask = BIT(bit / 32), val; in xgpio_irq_unmask()
433 __set_bit(bit, chip->enable); in xgpio_irq_unmask()
442 xgpio_read_ch(chip, XGPIO_DATA_OFFSET, bit, chip->last_irq_read); in xgpio_irq_unmask()
465 int bit = xgpio_to_bit(chip, irq_offset); in xgpio_set_irq_type() local
475 __set_bit(bit, chip->rising_edge); in xgpio_set_irq_type()
476 __set_bit(bit, chip->falling_edge); in xgpio_set_irq_type()
479 __set_bit(bit, chip->rising_edge); in xgpio_set_irq_type()
480 __clear_bit(bit, chip->falling_edge); in xgpio_set_irq_type()
483 __clear_bit(bit, chip->rising_edge); in xgpio_set_irq_type()
484 __set_bit(bit, chip->falling_edge); in xgpio_set_irq_type()
503 DECLARE_BITMAP(rising, 64); in xgpio_irqhandler()
504 DECLARE_BITMAP(falling, 64); in xgpio_irqhandler()
505 DECLARE_BITMAP(all, 64); in xgpio_irqhandler()
508 u32 bit; in xgpio_irqhandler() local
519 bitmap_complement(rising, chip->last_irq_read, 64); in xgpio_irqhandler()
520 bitmap_and(rising, rising, all, 64); in xgpio_irqhandler()
521 bitmap_and(rising, rising, chip->enable, 64); in xgpio_irqhandler()
522 bitmap_and(rising, rising, chip->rising_edge, 64); in xgpio_irqhandler()
524 bitmap_complement(falling, all, 64); in xgpio_irqhandler()
525 bitmap_and(falling, falling, chip->last_irq_read, 64); in xgpio_irqhandler()
526 bitmap_and(falling, falling, chip->enable, 64); in xgpio_irqhandler()
527 bitmap_and(falling, falling, chip->falling_edge, 64); in xgpio_irqhandler()
529 bitmap_copy(chip->last_irq_read, all, 64); in xgpio_irqhandler()
530 bitmap_or(all, rising, falling, 64); in xgpio_irqhandler()
534 dev_dbg(gc->parent, "IRQ rising %*pb falling %*pb\n", 64, rising, 64, falling); in xgpio_irqhandler()
536 for_each_set_bit(bit, all, 64) { in xgpio_irqhandler()
537 irq_offset = xgpio_from_bit(chip, bit); in xgpio_irqhandler()
592 bitmap_from_arr32(chip->state, state, 64); in xgpio_probe()
598 bitmap_from_arr32(chip->dir, dir, 64); in xgpio_probe()
626 chip->gc.ngpio = bitmap_weight(chip->hw_map, 64); in xgpio_probe()