Changeset 0f27b4c in mainline
- Timestamp:
- 2006-05-01T13:45:38Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 762a824
- Parents:
- 953b0f33
- Location:
- genarch
- Files:
-
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
genarch/Makefile.inc
r953b0f33 r0f27b4c 37 37 GENARCH_SOURCES += \ 38 38 genarch/src/acpi/acpi.c \ 39 genarch/src/acpi/ma td.c39 genarch/src/acpi/madt.c 40 40 endif 41 41 ifeq ($(CONFIG_PAGE_PT),y) -
genarch/src/acpi/acpi.c
r953b0f33 r0f27b4c 27 27 */ 28 28 29 /** 30 * @file acpi.c 31 * @brief Advanced Configuration and Power Interface (ACPI) initialization. 32 */ 33 29 34 #include <genarch/acpi/acpi.h> 30 35 #include <genarch/acpi/madt.h> -
genarch/src/acpi/madt.c
r953b0f33 r0f27b4c 27 27 */ 28 28 29 /** 30 * @file madt.c 31 * @brief Multiple APIC Description Table (MADT) parsing. 32 */ 33 29 34 #include <arch/types.h> 30 35 #include <typedefs.h> -
genarch/src/mm/as_ht.c
r953b0f33 r0f27b4c 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file as_ht.c 31 * @brief Address space functions for global page hash table. 27 32 */ 28 33 -
genarch/src/mm/as_pt.c
r953b0f33 r0f27b4c 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file as_pt.c 31 * @brief Address space functions for 4-level hierarchical pagetables. 27 32 */ 28 33 -
genarch/src/mm/asid.c
r953b0f33 r0f27b4c 27 27 */ 28 28 29 /* 30 * ASID management. 29 /** 30 * @file asid.c 31 * @brief ASID management. 31 32 * 32 33 * Modern processor architectures optimize TLB utilization -
genarch/src/mm/asid_fifo.c
r953b0f33 r0f27b4c 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 /** 30 * @file asid_fifo.c 31 * @brief FIFO queue ASID management. 32 * 33 * Architectures that link with this file keep the unallocated ASIDs 34 * in FIFO queue. The queue can be statically (e.g. mips32) or 35 * dynamically allocated (e.g ia64 and sparc64). 36 */ 28 37 29 38 #include <genarch/mm/asid_fifo.h> -
genarch/src/mm/page_ht.c
r953b0f33 r0f27b4c 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file page_ht.c 31 * @brief Virtual Address Translation (VAT) for global page hash table. 27 32 */ 28 33 -
genarch/src/mm/page_pt.c
r953b0f33 r0f27b4c 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file page_pt.c 31 * @brief Virtual Address Translation for hierarchical 4-level page tables. 27 32 */ 28 33
Note:
See TracChangeset
for help on using the changeset viewer.