Changeset 8776c46 in mainline


Ignore:
Timestamp:
2012-09-11T21:45:05Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68c2e32
Parents:
3451129
Message:

am32: add more flags to page fault register.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/mm/page_fault.h

    r3451129 r8776c46  
    4949                unsigned domain : 4;
    5050                unsigned zero : 1;
    51                 unsigned sbz0 : 1;
     51                unsigned lpae : 1; /**< Needs LPAE support implemented */
    5252                unsigned fs : 1; /**< armv6+ mandated, earlier IPLM. DEFINED */
    5353                unsigned wr : 1; /**< armv6+ only */
    54                 unsigned should_be_zero : 20;
    55         } ATTRIBUTE_PACKED data;
     54                unsigned ext : 1 ; /**< external abort */
     55                unsigned cm : 1; /**< Cache maintenance, needs LPAE support */
     56                unsigned should_be_zero : 18;
     57        } data;
    5658        struct {
    5759                unsigned status : 4;
     
    5961                unsigned fs : 1;
    6062                unsigned should_be_zero : 21;
    61         } ATTRIBUTE_PACKED inst;
     63        } inst;
    6264        uint32_t raw;
    6365} fault_status_t;
Note: See TracChangeset for help on using the changeset viewer.