1 /* SPDX-License-Identifier: GPL-2.0 */
3 * NSC/Cyrix CPU indexed register access. Must be inlined instead of
4 * macros to ensure correct access ordering
5 * Access order is always 0x22 (=offset), 0x23 (=value)
7 * When using the old macros a line like
8 * setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x88);
11 * outb((CX86_CCR2), 0x22);
13 * outb((CX86_CCR2), 0x22);
18 * which in fact violates the access order (= 0x22, 0x22, 0x23, 0x23).
21 static inline u8
getCx86(u8 reg
)
27 static inline void setCx86(u8 reg
, u8 data
)
33 #define getCx86_old(reg) ({ outb((reg), 0x22); inb(0x23); })
35 #define setCx86_old(reg, data) do { \