addrspace.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright (C) 2006 Atmel Corporation
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #ifndef __ASM_AVR32_ADDRSPACE_H
  23. #define __ASM_AVR32_ADDRSPACE_H
  24. #include <asm/types.h>
  25. /* Memory segments when segmentation is enabled */
  26. #define P0SEG 0x00000000
  27. #define P1SEG 0x80000000
  28. #define P2SEG 0xa0000000
  29. #define P3SEG 0xc0000000
  30. #define P4SEG 0xe0000000
  31. /* Returns the privileged segment base of a given address */
  32. #define PXSEG(a) (((unsigned long)(a)) & 0xe0000000)
  33. /* Returns the physical address of a PnSEG (n=1,2) address */
  34. #define PHYSADDR(a) (((unsigned long)(a)) & 0x1fffffff)
  35. /*
  36. * Map an address to a certain privileged segment
  37. */
  38. #define P1SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P1SEG))
  39. #define P2SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P2SEG))
  40. #define P3SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P3SEG))
  41. #define P4SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P4SEG))
  42. /* virt_to_phys will only work when address is in P1 or P2 */
  43. static inline unsigned long virt_to_phys(volatile void *address)
  44. {
  45. return PHYSADDR(address);
  46. }
  47. static inline void * phys_to_virt(unsigned long address)
  48. {
  49. return (void *)P1SEGADDR(address);
  50. }
  51. #define cached(addr) ((void *)P1SEGADDR(addr))
  52. #define uncached(addr) ((void *)P2SEGADDR(addr))
  53. /*
  54. * Given a physical address and a length, return a virtual address
  55. * that can be used to access the memory range with the caching
  56. * properties specified by "flags".
  57. *
  58. * This implementation works for memory below 512MiB (flash, etc.) as
  59. * well as above 3.5GiB (internal peripherals.)
  60. */
  61. #define MAP_NOCACHE (0)
  62. #define MAP_WRCOMBINE (1 << 7)
  63. #define MAP_WRBACK (MAP_WRCOMBINE | (1 << 9))
  64. #define MAP_WRTHROUGH (MAP_WRBACK | (1 << 0))
  65. static inline void *
  66. map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
  67. {
  68. if (flags == MAP_WRBACK)
  69. return (void *)P1SEGADDR(paddr);
  70. else
  71. return (void *)P2SEGADDR(paddr);
  72. }
  73. #endif /* __ASM_AVR32_ADDRSPACE_H */