Changeset 702
- Timestamp:
- May 26, 2014, 9:41:05 AM (10 years ago)
- Location:
- trunk/softs/tsar_boot
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/tsar_boot/README
r701 r702 11 11 For each platform, we must define a new directory. 12 12 13 --->defs_platform.h:13 - defs_platform.h: 14 14 15 This file is mandatory. This file defines the 16 NB_PROCS per cluster, the NB_CLUSTERS and the base address of 17 the TTY, IOC, XICU and MEMC (config) devices. 18 It defines also: 15 This file is mandatory. This file defines the NB_PROCS per 16 cluster, the NB_CLUSTERS and the base address of the TTY, IOC, 17 XICU and MEMC (config) devices. It defines also: 19 18 20 -> USE_IOB 21 This constant is used by the boot_ioc_read function to know 22 if the buffer used to store the blocks from the 23 block_device must be invalidated in the memory cache after 24 the transfert has finished. 19 #define USE_IOB 25 20 26 -> CACHE_COHERENCE 27 This constant is used by the boot_ioc_read function to know 28 if the buffer used to store the blocks from the block_device 29 must be invalidated in the dcache after the transfert has 30 finished. 21 This constant is used by the boot_ioc_read function to know 22 if the buffer used to store the blocks from the block_device 23 must be invalidated in the memory cache after the transfert 24 has finished. 31 25 32 -> CACHE_LINE_SIZE 33 This constant is mandatory if CACHE_COHERENCE=0 or USE_IOB=1 34 This constant defines the size in bytes of a cache line. 26 #define CACHE_COHERENCE 35 27 36 -> RESET_DEBUG 37 Set value to 1 to show some debug messages during loading 28 This constant is used by the boot_ioc_read function to know 29 if the buffer used to store the blocks from the block_device 30 must be invalidated in the dcache after the transfert has 31 finished. 38 32 39 -> IRQ_PER_PROC 40 This constant is used to know how many XICU irq outputs are 41 connected to each processor. 33 #define CACHE_LINE_SIZE 34 35 This constant is mandatory if CACHE_COHERENCE=0 or USE_IOB=1 36 This constant defines the size in bytes of a cache line. 42 37 43 ---> platform_soclib.dts:38 #define RESET_DEBUG 44 39 45 Device tree file. It is mandatory if compiling for a SOCLIB 46 platform and USE_DT=1. 40 Set value to 1 to show some debug messages during loading 47 41 48 ---> platform_fpga.dts:42 #define IRQ_PER_PROC 49 43 50 Device tree file. It is mandatory if compiling for a FPGA platform51 and USE_DT=1.44 This constant is used to know how many XICU irq outputs are 45 connected to each processor. 52 46 53 ---> ldscript:47 - platform_soclib.dts: 54 48 55 LD script defining the segments of this boot loader. 56 We define two segments: 57 seg_stack_base: Base address of the stack used by processor 0 58 during the boot process. read-write data and bss will also 59 be there. 49 Device tree file. It is mandatory if compiling for a SOCLIB 50 platform and USE_DT=1. 60 51 61 seg_boot_base: Base address of the code and read-only data 62 defined for this loader 52 - platform_fpga.dts: 53 54 Device tree file. It is mandatory if compiling for a FPGA 55 platform and USE_DT=1. 56 57 - ldscript: 58 59 LD script defining the segments of this boot loader. 60 We define two segments: 61 62 seg_stack_base: 63 64 Base address of the stack used by processor 0 during the boot 65 process. read-write data and bss will also be there. 66 67 seg_boot_base: 68 69 Base address of the code and read-only data defined for this 70 loader 63 71 64 Makefile Makefile for compile the boot loader. 65 Arguments to pass: 72 Makefile Makefile to compile the boot loader. Arguments to pass: 66 73 67 --->PLATFORM_DIR=<platform_dir>74 PLATFORM_DIR=<platform_dir> 68 75 69 70 76 Defines the directory where to find the plateform specific 77 files 71 78 72 --->SOCLIB=179 SOCLIB=1 73 80 74 75 81 If using SOCLIB, define this flag to use the BLOCK DEVICE 82 driver and to choose the platform_soclib device tree. 76 83 77 --->RAMDISK=184 RAMDISK=1 78 85 79 If using SOCLIB, define this flag to use a RAMDISK instead80 ofBLOCK DEVICE (Set this flag when the SOCLIB flag is also set)86 If using SOCLIB, define this flag to use a RAMDISK instead of 87 BLOCK DEVICE (Set this flag when the SOCLIB flag is also set) 81 88 82 --->USE_DT=089 USE_DT=0 83 90 84 If a device tree file is not used, set this flag to 0. It85 isset by default to 1.91 If a device tree file is not used, set this flag to 0. It is 92 set by default to 1. 86 93 87 e.g. make PLATFORM_DIR=conf/<platform_dir> SOCLIB=1 USE_DT=0 94 e.g. make PLATFORM_DIR=<platform_conf> \ 95 SOCLIB=1 \ 96 USE_DT=0 \ 97 RAMDISK=0 -
trunk/softs/tsar_boot/version.sh
r688 r702 2 2 3 3 n="tsarboot" 4 v=$(cat version)4 v=$(cat VERSION) 5 5 t=$(date) 6 6 u=${USER-root} … … 8 8 9 9 reporev=$(svn info 2>/dev/null) 10 if [ $? -eq 0 ] 10 if [ $? -eq 0 ]; 11 11 then 12 12 repotype="svn" 13 reporev=$(echo $reporev| awk -F: '$1 == "Last Changed Rev" {print $2}')13 reporev=$(echo "$reporev" | awk -F: '$1 == "Last Changed Rev" {print $2}') 14 14 else 15 15 repotype="git"
Note: See TracChangeset
for help on using the changeset viewer.