get config tool satisfied.. let's see if we get this working..
[coreboot.git] / src / mainboard / technologic / ts5300 / Config.lb
1 ##
2 ## Compute the location and size of where this firmware image
3 ## (linuxBIOS plus bootloader) will live in the boot rom chip.
4 ##
5 if USE_FALLBACK_IMAGE
6         default ROM_SECTION_SIZE   = FALLBACK_SIZE
7         default ROM_SECTION_OFFSET = ( ROM_SIZE - FALLBACK_SIZE )
8 else
9         default ROM_SECTION_SIZE   = ( ROM_SIZE - FALLBACK_SIZE )
10         default ROM_SECTION_OFFSET = 0
11 end
12
13 ##
14 ## Compute the start location and size size of
15 ## The linuxBIOS bootloader.
16 ##
17 default CONFIG_ROM_STREAM_START = (0xffffffff - ROM_SIZE + ROM_SECTION_OFFSET + 1)
18 default PAYLOAD_SIZE            = ( ROM_SECTION_SIZE - ROM_IMAGE_SIZE )
19
20 ##
21 ## Compute where this copy of linuxBIOS will start in the boot rom
22 ##
23 default _ROMBASE      = ( CONFIG_ROM_STREAM_START + PAYLOAD_SIZE )
24
25 ##
26 ## Compute a range of ROM that can cached to speed up linuxBIOS,
27 ## execution speed.
28 ##
29 ## XIP_ROM_SIZE must be a power of 2.
30 ## XIP_ROM_BASE must be a multiple of XIP_ROM_SIZE
31 ##
32 default XIP_ROM_SIZE=65536
33 default XIP_ROM_BASE = ( _ROMBASE + ROM_IMAGE_SIZE - XIP_ROM_SIZE )
34
35 ##
36 ## Set all of the defaults for an x86 architecture
37 ##
38
39 arch i386 end
40
41 ##
42 ## Build the objects we have code for in this directory.
43 ##
44
45 driver mainboard.o
46 if HAVE_PIRQ_TABLE object irq_tables.o end
47 #object reset.o
48
49 ##
50 ## Romcc output
51 ##
52 makerule ./failover.E
53         depends "$(MAINBOARD)/failover.c ./romcc" 
54         action "./romcc -E -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
55 end
56
57 makerule ./failover.inc
58         depends "$(MAINBOARD)/failover.c ./romcc"
59         action "./romcc    -O --label-prefix=failover -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/failover.c -o $@"
60 end
61
62 makerule ./auto.E 
63         depends "$(MAINBOARD)/auto.c option_table.h ./romcc" 
64         action  "./romcc -E -mcpu=c3 -O -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/auto.c -o $@"
65 end
66 makerule ./auto.inc 
67         depends "$(MAINBOARD)/auto.c option_table.h ./romcc"
68         action  "./romcc    -mcpu=c3 -O -I$(TOP)/src -I. $(CPPFLAGS) $(MAINBOARD)/auto.c -o $@"
69 end
70
71 ##
72 ## Build our 16 bit and 32 bit linuxBIOS entry code
73 ##
74 mainboardinit cpu/x86/16bit/entry16.inc
75 mainboardinit cpu/x86/32bit/entry32.inc
76 ldscript /cpu/x86/16bit/entry16.lds
77 ldscript /cpu/x86/32bit/entry32.lds
78
79 ##
80 ## Build our reset vector (This is where linuxBIOS is entered)
81 ##
82 if USE_FALLBACK_IMAGE 
83         mainboardinit cpu/x86/16bit/reset16.inc 
84         ldscript /cpu/x86/16bit/reset16.lds 
85 else
86         mainboardinit cpu/x86/32bit/reset32.inc 
87         ldscript /cpu/x86/32bit/reset32.lds 
88 end
89
90 ### Should this be in the northbridge code?
91 mainboardinit arch/i386/lib/cpu_reset.inc
92
93 ##
94 ## Include an id string (For safe flashing)
95 ##
96 mainboardinit arch/i386/lib/id.inc
97 ldscript /arch/i386/lib/id.lds
98
99 ###
100 ### This is the early phase of linuxBIOS startup 
101 ### Things are delicate and we test to see if we should
102 ### failover to another image.
103 ###
104 if USE_FALLBACK_IMAGE
105         ldscript /arch/i386/lib/failover.lds 
106         mainboardinit ./failover.inc
107 end
108
109 ###
110 ### O.k. We aren't just an intermediary anymore!
111 ###
112
113 ##
114 ## Setup RAM
115 ##
116 mainboardinit cpu/x86/fpu/enable_fpu.inc
117 mainboardinit cpu/x86/mmx/enable_mmx.inc
118 mainboardinit ./auto.inc
119 mainboardinit cpu/x86/mmx/disable_mmx.inc
120
121 ##
122 ## Include the secondary Configuration files 
123 ##
124 dir /pc80
125 config chip.h
126
127 chip northbridge/amd/sc520
128   device pci_domain 0 on
129     device pci 0.0 on
130 #chip southbridge/amd/sc520
131 #                register "enable_usb" = "0"
132 #                register "enable_native_ide" = "1"
133 #                register "enable_com_ports" = "1"
134 #                register "enable_keyboard" = "0"
135 #                register "enable_nvram" = "1"
136 #        end
137     end
138     chip cpu/amd/sc520
139     end
140   end
141 end
142