Lines Matching +full:static +full:- +full:address
6 * SPDX-License-Identifier: Apache-2.0
26 * @fn static inline void sys_out8(uint8_t data, io_port_t port);
32 * @param port the port address where to write the byte
36 * @fn static inline uint8_t sys_in8(io_port_t port);
41 * @param port the port address from where to read the byte
47 * @fn static inline void sys_out16(uint16_t data, io_port_t port);
53 * @param port the port address where to write the 16 bits
57 * @fn static inline uint16_t sys_in16(io_port_t port);
62 * @param port the port address from where to read the 16 bits
68 * @fn static inline void sys_out32(uint32_t data, io_port_t port);
74 * @param port the port address where to write the 32 bits
78 * @fn static inline uint32_t sys_in32(io_port_t port);
83 * @param port the port address from where to read the 32 bits
89 * @fn static inline void sys_io_set_bit(io_port_t port, unsigned int bit)
94 * @param port the port address from where to look for the bit
99 * @fn static inline void sys_io_clear_bit(io_port_t port, unsigned int bit)
104 * @param port the port address from where to look for the bit
109 * @fn static inline int sys_io_test_bit(io_port_t port, unsigned int bit)
115 * @param port the port address from where to look for the bit
122 * @fn static inline int sys_io_test_and_set_bit(io_port_t port, unsigned int bit)
128 * @param port the port address from where to look for the bit
135 * @fn static inline int sys_io_test_and_clear_bit(io_port_t port, unsigned int bit)
141 * @param port the port address from where to look for the bit
150 * @fn static inline void sys_write8(uint8_t data, mm_reg_t addr);
156 * @param addr the memory mapped register address where to write the byte
160 * @fn static inline uint8_t sys_read8(mm_reg_t addr);
165 * @param addr the memory mapped register address from where to read the byte
171 * @fn static inline void sys_write16(uint16_t data, mm_reg_t addr);
177 * @param addr the memory mapped register address where to write the 16 bits
181 * @fn static inline uint16_t sys_read16(mm_reg_t addr);
186 * @param addr the memory mapped register address from where to read
193 * @fn static inline void sys_write32(uint32_t data, mm_reg_t addr);
199 * @param addr the memory mapped register address where to write the 32 bits
203 * @fn static inline uint32_t sys_read32(mm_reg_t addr);
208 * @param addr the memory mapped register address from where to read
215 * @fn static inline void sys_write64(uint64_t data, mm_reg_t addr);
221 * @param addr the memory mapped register address where to write the 64 bits
225 * @fn static inline uint64_t sys_read64(mm_reg_t addr);
230 * @param addr the memory mapped register address from where to read
239 * @fn static inline void sys_set_bit(mem_addr_t addr, unsigned int bit)
244 * @param addr the memory address from where to look for the bit
249 * @fn static inline void sys_set_bits(mem_addr_t addr, unsigned int mask)
254 * @param addr the memory address from where to look for the bits
259 * @fn static inline void sys_clear_bits(mem_addr_t addr, unsigned int mask)
264 * @param addr the memory address from where to look for the bits
269 * @fn static inline void sys_clear_bit(mem_addr_t addr, unsigned int bit)
274 * @param addr the memory address from where to look for the bit
279 * @fn static inline int sys_test_bit(mem_addr_t addr, unsigned int bit)
285 * @param addr the memory address from where to look for the bit
292 * @fn static inline int sys_test_and_set_bit(mem_addr_t addr, unsigned int bit)
298 * @param addr the memory address from where to look for the bit
305 * @fn static inline int sys_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
311 * @param addr the memory address from where to look for the bit
318 * @fn static inline void sys_bitfield_set_bit(mem_addr_t addr, unsigned int bit)
323 * @param addr the memory address from where to look for the bit
328 * @fn static inline void sys_bitfield_clear_bit(mem_addr_t addr, unsigned int bit)
333 * @param addr the memory address from where to look for the bit
338 * @fn static inline int sys_bitfield_test_bit(mem_addr_t addr, unsigned int bit)
344 * @param addr the memory address from where to look for the bit
351 * @fn static inline int sys_bitfield_test_and_set_bit(mem_addr_t addr, unsigned int bit)
357 * @param addr the memory address from where to look for the bit
364 * @fn static inline int sys_bitfield_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
370 * @param addr the memory address from where to look for the bit