Changeset 189 for soft/giet_vm/boot/boot.ld
- Timestamp:
- Aug 7, 2012, 6:37:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/boot/boot.ld
r167 r189 3 3 *****************************************************************************/ 4 4 5 /* The vsegs used in the boot phase must respect identity mapping: 6 physical address = virtual address */ 5 /* 6 The following (virtual) addresses are specific for the boot phase. 7 They must respect identity mapping: physical address = virtual address 8 */ 7 9 8 10 seg_boot_base = 0xBFC00000; /* boot code */ … … 12 14 seg_mapping_base = 0xBFC0C000; /* boot mapping_info */ 13 15 16 /* 17 The following (virtual) addresse are defined and used by the kernel. 18 They are not constrained to respect identity mapping. 19 */ 20 14 21 seg_kernel_init_base = 0x80090000; /* system init entry */ 15 22 16 seg_tty_base = 0x90000000; /* TTY device: for debug purpose! */ 23 seg_tty_base = 0x90000000; /* TTY device */ 24 seg_timer_base = 0x91000000; /* Timer device */ 25 seg_ioc_base = 0x92000000; /* Block device */ 26 seg_dma_base = 0x93000000; /* DMA device */ 27 seg_gcd_base = 0x95000000; /* GCD device */ 28 seg_fb_base = 0x96000000; /* FrameBuffer device */ 29 seg_iob_base = 0x9E000000; /* IO Bridge device */ 30 seg_icu_base = 0x9F000000; /* ICU or XICU device */ 17 31 18 32 /* 19 *Grouping sections into segments for boot code and data20 33 Grouping sections into segments for boot code and data 34 */ 21 35 22 36 SECTIONS 23 37 { 24 /* *contain both data and code sections */38 /* contain both data and code sections */ 25 39 . = seg_boot_base; 26 40 seg_boot :
Note: See TracChangeset
for help on using the changeset viewer.