Changeset b7068da in mainline for kernel/generic/include/mm/frame.h


Ignore:
Timestamp:
2012-02-09T20:35:12Z (12 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
591762c6
Parents:
7cede12c (diff), 3d4750f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/frame.h

    r7cede12c rb7068da  
    5050typedef uint8_t frame_flags_t;
    5151
     52#define FRAME_NONE        0x0
    5253/** Convert the frame address to kernel VA. */
    5354#define FRAME_KA          0x1
     
    5859/** Do not reserve / unreserve memory. */
    5960#define FRAME_NO_RESERVE  0x8
     61/** Allocate a frame which can be identity-mapped. */
     62#define FRAME_LOWMEM      0x10
     63/** Allocate a frame which cannot be identity-mapped. */
     64#define FRAME_HIGHMEM     0x20
    6065
    6166typedef uint8_t zone_flags_t;
    6267
     68#define ZONE_NONE       0x0
    6369/** Available zone (free for allocation) */
    64 #define ZONE_AVAILABLE  0x0
     70#define ZONE_AVAILABLE  0x1
    6571/** Zone is reserved (not available for allocation) */
    66 #define ZONE_RESERVED   0x8
     72#define ZONE_RESERVED   0x2
    6773/** Zone is used by firmware (not available for allocation) */
    68 #define ZONE_FIRMWARE   0x10
     74#define ZONE_FIRMWARE   0x4
     75/** Zone contains memory that can be identity-mapped */
     76#define ZONE_LOWMEM     0x8
     77/** Zone contains memory that cannot be identity-mapped */
     78#define ZONE_HIGHMEM    0x10
    6979
    70 /** Currently there is no equivalent zone flags
    71     for frame flags */
    72 #define FRAME_TO_ZONE_FLAGS(frame_flags)  0
     80/** Mask of zone bits that must be matched exactly. */
     81#define ZONE_EF_MASK    0x7
     82
     83#define FRAME_TO_ZONE_FLAGS(ff) \
     84        ((((ff) & FRAME_LOWMEM) ? ZONE_LOWMEM : \
     85            (((ff) & FRAME_HIGHMEM) ? ZONE_HIGHMEM : \
     86            ZONE_LOWMEM /* | ZONE_HIGHMEM */)) | \
     87            ZONE_AVAILABLE)
     88
     89#define ZONE_FLAGS_MATCH(zf, f) \
     90        (((((zf) & ZONE_EF_MASK)) == ((f) & ZONE_EF_MASK)) && \
     91            (((zf) & ~ZONE_EF_MASK) & (f)))
    7392
    7493typedef struct {
    7594        size_t refcount;      /**< Tracking of shared frames */
    76         uint8_t buddy_order;  /**< Buddy system block order */
    7795        link_t buddy_link;    /**< Link to the next free block inside
    7896                                   one order */
    7997        void *parent;         /**< If allocated by slab, this points there */
     98        uint8_t buddy_order;  /**< Buddy system block order */
    8099} frame_t;
    81100
     
    129148}
    130149
    131 NO_TRACE static inline bool zone_flags_available(zone_flags_t flags)
    132 {
    133         return ((flags & (ZONE_RESERVED | ZONE_FIRMWARE)) == 0);
    134 }
    135 
    136150#define IS_BUDDY_ORDER_OK(index, order) \
    137151    ((~(((sysarg_t) -1) << (order)) & (index)) == 0)
     
    146160
    147161extern void frame_init(void);
     162extern bool frame_adjust_zone_bounds(bool, uintptr_t *, size_t *);
    148163extern void *frame_alloc_generic(uint8_t, frame_flags_t, size_t *);
    149164extern void *frame_alloc(uint8_t, frame_flags_t);
     
    161176extern void frame_mark_unavailable(pfn_t, size_t);
    162177extern size_t zone_conf_size(size_t);
     178extern pfn_t zone_external_conf_alloc(size_t);
    163179extern bool zone_merge(size_t, size_t);
    164180extern void zone_merge_all(void);
Note: See TracChangeset for help on using the changeset viewer.