blob: 784fde27e1339b9190c3031fa15bfe4922c18cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* Copyright 2004 Tyan Computer
* by yhlu@tyan.com
*/
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
#include "chip.h"
/*you need to
1.add
chip drivers/pci/onboard
device pci x.0 on end
register "rom_address" = "0xfff80000"
end
in your MB mainboard Config.lb
2. add
# 48K for SCSI FW or ATI ROM
option ROM_SIZE = 475136
in your MB targets Config.lb, afer romimage "normal"
3. create you vgabios.bin under normal bios and put that in dir that targets Config residues.
# dd if=/dev/mem of=atix.rom skip=1536 count=96
4. after build linuxbios.rom
# cat ../atix.rom ./normal/linuxbios.rom ./fallback/linuxbios.rom > linuxbios.rom
or use nsxv to build you image
# time ./nsxv s2850
put following in nsxv and put nsxv in your LBROOT
#!/bin/bash
MBVENDOR=tyan
MBMODEL=$1
LBROOT=/home/yhlu/xx/xx
echo $1
date
cd "$LBROOT/freebios2/targets"
rm -rf "$MBVENDOR/$MBMODEL/$MBMODEL"
./buildtarget "$MBVENDOR/$MBMODEL" &> "$LBROOT/x_b.txt"
cd "$MBVENDOR/$MBMODEL/$MBMODEL"
#make clean
eval make &> "$LBROOT/x_m.txt"
if [ $? -eq 0 ]; then
echo "ok."
else
echo "FAILED! Log excerpt:"
tail -n 15 "$LBROOT/x_m.txt"
exit
fi
cat ../atix.rom ./normal/linuxbios.rom ./fallback/linuxbios.rom > "$LBROOT/rom/"$MBMODEL"_linuxbios.rom"
cp -f "$LBROOT/rom/"$MBMODEL"_linuxbios.rom" /home/yhlu/
date
*/
static void onboard_enable(device_t dev)
{
struct drivers_pci_onboard_config *conf;
conf = dev->chip_info;
dev->rom_address = conf->rom_address;
}
struct chip_operations drivers_pci_onboard_ops = {
#if CONFIG_CHIP_NAME == 1
CHIP_NAME("Onboard PCI")
#endif
.enable_dev = onboard_enable,
};
|