processor-cyrix.h 879 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  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)
  6. *
  7. * When using the old macros a line like
  8. * setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x88);
  9. * gets expanded to:
  10. * do {
  11. * outb((CX86_CCR2), 0x22);
  12. * outb((({
  13. * outb((CX86_CCR2), 0x22);
  14. * inb(0x23);
  15. * }) | 0x88), 0x23);
  16. * } while (0);
  17. *
  18. * which in fact violates the access order (= 0x22, 0x22, 0x23, 0x23).
  19. */
  20. static inline u8 getCx86(u8 reg)
  21. {
  22. outb(reg, 0x22);
  23. return inb(0x23);
  24. }
  25. static inline void setCx86(u8 reg, u8 data)
  26. {
  27. outb(reg, 0x22);
  28. outb(data, 0x23);
  29. }
  30. #define getCx86_old(reg) ({ outb((reg), 0x22); inb(0x23); })
  31. #define setCx86_old(reg, data) do { \
  32. outb((reg), 0x22); \
  33. outb((data), 0x23); \
  34. } while (0)