addrspace.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* SPDX-License-Identifier: GPL-2.0
  2. *
  3. * Copyright (C) 1999 by Kaz Kojima
  4. *
  5. * Defitions for the address spaces of the SH CPUs.
  6. */
  7. #ifndef __ASM_SH_ADDRSPACE_H
  8. #define __ASM_SH_ADDRSPACE_H
  9. #include <cpu/addrspace.h>
  10. /* If this CPU supports segmentation, hook up the helpers */
  11. #ifdef P1SEG
  12. /*
  13. [ P0/U0 (virtual) ] 0x00000000 <------ User space
  14. [ P1 (fixed) cached ] 0x80000000 <------ Kernel space
  15. [ P2 (fixed) non-cachable] 0xA0000000 <------ Physical access
  16. [ P3 (virtual) cached] 0xC0000000 <------ vmalloced area
  17. [ P4 control ] 0xE0000000
  18. */
  19. /* Returns the privileged segment base of a given address */
  20. #define PXSEG(a) (((unsigned long)(a)) & 0xe0000000)
  21. #ifdef CONFIG_29BIT
  22. /*
  23. * Map an address to a certain privileged segment
  24. */
  25. #define P1SEGADDR(a) \
  26. ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P1SEG))
  27. #define P2SEGADDR(a) \
  28. ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P2SEG))
  29. #define P3SEGADDR(a) \
  30. ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P3SEG))
  31. #define P4SEGADDR(a) \
  32. ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P4SEG))
  33. #else
  34. /*
  35. * These will never work in 32-bit, don't even bother.
  36. */
  37. #define P1SEGADDR(a) ({ (void)(a); BUG(); NULL; })
  38. #define P2SEGADDR(a) ({ (void)(a); BUG(); NULL; })
  39. #define P3SEGADDR(a) ({ (void)(a); BUG(); NULL; })
  40. #define P4SEGADDR(a) ({ (void)(a); BUG(); NULL; })
  41. #endif
  42. #endif /* P1SEG */
  43. /* Check if an address can be reached in 29 bits */
  44. #define IS_29BIT(a) (((unsigned long)(a)) < 0x20000000)
  45. #ifdef CONFIG_SH_STORE_QUEUES
  46. /*
  47. * This is a special case for the SH-4 store queues, as pages for this
  48. * space still need to be faulted in before it's possible to flush the
  49. * store queue cache for writeout to the remapped region.
  50. */
  51. #define P3_ADDR_MAX (P4SEG_STORE_QUE + 0x04000000)
  52. #else
  53. #define P3_ADDR_MAX P4SEG
  54. #endif
  55. #endif /* __ASM_SH_ADDRSPACE_H */