Deleted Added
sdiff udiff text old ( 12695:3df197da6069 ) new ( 12850:7036cad54910 )
full compact
1/*
2 * Copyright (c) 2013 ARM Limited
3 * Copyright (c) 2014-2015 Sven Karlsson
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

--- 569 unchanged lines hidden (view full) ---

578 {CSR_TDATA1, {"tdata1", MISCREG_TDATA1}},
579 {CSR_TDATA2, {"tdata2", MISCREG_TDATA2}},
580 {CSR_TDATA3, {"tdata3", MISCREG_TDATA3}},
581 {CSR_DCSR, {"dcsr", MISCREG_DCSR}},
582 {CSR_DPC, {"dpc", MISCREG_DPC}},
583 {CSR_DSCRATCH, {"dscratch", MISCREG_DSCRATCH}}
584};
585
586const off_t MXL_OFFSET = (sizeof(MiscReg) * 8 - 2);
587const off_t SXL_OFFSET = 34;
588const off_t UXL_OFFSET = 32;
589const off_t FS_OFFSET = 13;
590const off_t FRM_OFFSET = 5;
591
592const MiscReg ISA_MXL_MASK = 3ULL << MXL_OFFSET;
593const MiscReg ISA_EXT_MASK = mask(26);

--- 80 unchanged lines hidden ---