I have inited the hw sensors in LinuxBIOS for s2881. So you could use
lmsensor to check the FAN speed. The config file is on Tyan web.
For the Fan control, there should more some reg setting...to reduce the
FAN speed winbond and adm1027...
YH
Hi,
BIOSes is an area where accessibility is approximately non-existent.
Asking vendors to support hardware speech syntheses and braille devices
is quite dreamwork. I tried to convince accessibility people to release
basic drivers with BSD licenses so that vendors might integrate them,
but they just refused that, arguing that vendors will not make any
effort to integrate them, and there will always be bugs (which are hard
to debug/fix/integrate/... with vendor BIOSes).
LinuxBios, however, can …
[View More]be a great opportunity to have an accessible
BIOS.
So what can be done? If I understood well, LinuxBios is a linux kernel
-based bios. Does that mean that it has the notion of process, or does
it run only in kernel mode? (which is sufficient for taking advantage of
linux drivers).
Samuel
[View Less]
We just got two developer OLPC mainboards in. Who else is here working
on LinuxBIOS for OLPC besides Ollie and Ron?
We are willing to help on testing/developing BIOS, but will probably do
most of our work on mesh networking and codec's.
-Bari
Hallo there,
I used my Pentium4 to build a LinuxBIOS image based on the jun30th snapshot,
using FILO to boot directly into GRUB.
Now, my problem is, that the Tyan is currently bricked, and yes, even a
replacement bios from BIOSMAN did not do the trick
I do not want to send the Mainboard into warranty just yet.
I have my linuxbios.rom, and a brand new, shiny SST49LF080A chip to put the
image into.
However, since the Tyan is bricked, I cannot program with it's own flashing
mechanism using the …
[View More]flashrom utility included in LinuxBios.
I currently have a nice little Abit KV85 mainboard, which, in combination
with uniflash and DOS is supported, however, uniflash
cannot write the LinuxBIOS ELF image, and flashrom does not like this
mainboard. Please advise on how to continue,
ps. I have access to a TopMAX universal programmer.
Thanks,
--
------------------------
---- Stop the DRM! www.defectivebydesign.org ----
---- Stop the TCPA from taking away OUR freedom! www.againsttcpa.com/ -----
---- Arturo Mann, arturo.mann(a)gmail.com ----
[View Less]
Hi folks,
Ok, ive had a play around with the code for LB to see if i can find where its failing and have found the following :-
in file : src/northbridge/via/vt8623/raminit.c
I added a couple of line to show were in the file its crashing :-
/* setup cpu */
pci_write_config8(north,0x50,0xc8);
pci_write_config8(north,0x51,0xde);
pci_write_config8(north,0x52,0xcf);
pci_write_config8(north,0x53,0x88);
pci_write_config8(north,0x55,0x04);
…
[View More]print_debug("vt8623 init step 2\r\n");
/*
DRAM MA Map Type Device 0 Offset 58
Determine memory addressing based on the module's memory technology and
arrangement. See Table 4-9 of Intel's 82443GX datasheet for details.
Bank 1/0 MA map type 58[7-5]
Bank 1/0 command rate 58[4]
Bank 3/2 MA map type 58[3-1]
Bank 3/2 command rate 58[0]
Read SPD byte 17, Number of banks on SDRAM device.
*/
print_debug("vt8623 init step 3\r\n");
c = 0;
b = smbus_read_byte(0xa0,17);
print_debug("vt8623 init step 4\r\n");
print_val("Detecting Memory\r\nNumber of Banks ",b);
print_debug("vt8623 init step 5\r\n");
if( b != 2 ){ // not 16 Mb type
/*
Read SPD byte 3, Number of row addresses.
*/
At line 103 (aprox, as ive added some lines for debug as u can see)
the print_debug("vt8623 init step 3\r\n"); statment works ok
BUT I NEVER GET THE 'step 4' debug statments outputting
so i can assume (and PLEASE correct me if im wrong, or if u recon the lines ive added are the cause)
the the bad line is :
b = smbus_read_byte(0xa0,17);
Ok, after finding this line, i hunted for the source for smbus_read_byte which i belive is in :
src/southbridge/via/vt8231/vt8231_early_smbus.c
(am i corect in thinking this??????)
Im not sure because i edited the file starting at line 151 and added in my debug lines as follows :-
static int smbus_read_byte(unsigned device, unsigned address)
{
print_debug("smbus_read_byte start\r\n");
unsigned char global_control_register;
unsigned char global_status_register;
unsigned char byte;
print_debug("smbus_read_byte step 2\r\n");
if (smbus_wait_until_ready() < 0) {
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTA$
if (smbus_wait_until_ready() < 0) {
return -2;
}
}
print_debug("smbus_read_byte step 3\r\n");
/* setup transaction */
/* disable interrupts */
outb(inb(SMBUS_IO_BASE + SMBHSTCTL) & 0xfe, SMBUS_IO_BASE + SMBHSTCTL);
print_debug("smbus_read_byte step 4\r\n");
/* set the device I'm talking too */
outb(((device & 0x7f) << 1) | 1, SMBUS_IO_BASE + SMBXMITADD);
print_debug("smbus_read_byte step 5\r\n");
/* set the command/address... */
outb(address & 0xFF, SMBUS_IO_BASE + SMBHSTCMD);
print_debug("smbus_read_byte step 6\r\n");
/* set up for a byte data read */
outb((inb(SMBUS_IO_BASE + SMBHSTCTL) & 0xe3) | (0x2 << 2), SMBUS_IO_BAS$
print_debug("smbus_read_byte step 7\r\n");
/* clear any lingering errors, so the transaction will run */
outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
print_debug("smbus_read_byte step 8\r\n");
/* clear the data byte... */
outb(0, SMBUS_IO_BASE + SMBHSTDAT0);
print_debug("smbus_read_byte step 9\r\n");
/* start a byte read, with interrupts disabled */
outb((inb(SMBUS_IO_BASE + SMBHSTCTL) | 0x40), SMBUS_IO_BASE + SMBHSTCTL$
print_debug("smbus_read_byte step 10\r\n");
/* poll for it to start */
if (smbus_wait_until_active() < 0) {
return -4;
}
print_debug("smbus_read_byte step 11\r\n");
/* poll for transaction completion */
if (smbus_wait_until_done() < 0) {
return -3;
}
print_debug("smbus_read_byte step 12\r\n");
/* Ignore the Host Busy & Command Complete ? */
global_status_register = inb(SMBUS_IO_BASE + SMBHSTSTAT) & ~((1 << 1) |$
print_debug("smbus_read_byte step 13\r\n");
/* read results of transaction */
byte = inb(SMBUS_IO_BASE + SMBHSTDAT0);
print_debug("smbus_read_byte step 14\r\n");
if (global_status_register != 0) {
return -1;
}
print_debug("smbus_read_byte step 15\r\n");
return byte;
}
Unfortunatly NOTHING EXTRA was displayed via the serial port :(
So, first, is this the write file that im editing to find were the problem is occuring?
second, if so, why didnt i get at leaste the first print_debug before anything else was run in the routine?
if its not the correct file, which file should i edit?
Is this all necisarry, or has someone else already done all this, and got a solution :)
One last thing, am i correct in thinking that simply going into src/targets/via/epia-m/epia-m/ and running 'make clean', 'make'
is enough to recompile all the routines (including the southbridge stuff)?
Matt
[View Less]
Ok, found a serial cable :)
Booting up the EPIA-PD1000 I get the following via serial terminal :-
0
LinuxBIOS-1.1.8.0Fallback Sat Jul 1 01:02:23 BST 2006 starting...
Enabling mainboard devices
Enabling shadow ram
vt8623 init starting
and thats as far as it gets :(
Is there a setting to get a more verbose output?
or can anyone give me any pointers just from this? (LOL)
As i understand it the vt8623 is the video chip, does this meen that my via video bios grab didnt work properly?
Is …
[View More]there an alternative to using the via video bios grabbed from the via bios?
Also as another idea, do u actually NEED the vt8623 to be initalised? if you dont need vga output? if not how do u disable it?
Thanks
Matt
[View Less]
Hi,
I have just got my RD1, and installed it into my EPIA-PD10000 m/board (same chipset as the EPIA-M), all works fine :)
I ran the flashrom util fom the linuxbios source code, (downloaded via svn)
when i run the flashrom util i get the following :-
with bios savour switched in, but nothing written :-
:~/bios/LinuxBIOSv2/util/flashrom# ./flashrom
Calibrating delay loop... ok
No LinuxBIOS table found.
Enabling flash write on VT8235...OK
W49F002U found at physical address: 0xfffc0000
Flash …
[View More]part is W49F002U
OK, only ENABLING flash write, but NOT FLASHING.
with original bios switched in :-
~/bios/LinuxBIOSv2/util/flashrom# ./flashrom
Calibrating delay loop... ok
No LinuxBIOS table found.
Enabling flash write on VT8235...OK
No EEPROM/flash device found.
As you can see the RD1 bios chip is reconised fine but my original bios chip dosnt seem to be found :(
on inspection of the bios chip, i can see a chip number of :F492002UA
If ive understood the flashrom program, this isnt reconsied becasue there isnt a file of that name within the flashrom directory (each file represents its resective bios number????)
Has anyone come accross this bios chip before, and if so can they supply the config file for flashrom?
As i understand it, i should still be able to use the EPIA flash program, but as i dont have a working floppy drive in the house, and am not keen on using a cd for a 1.44Mb file, PLEASE could anyone recomend a way around this?
Also if i use the EPIA flash program it makes it harder to get the compiled rom into the bios, as i have to jump from linux to windows all the time :(
Is there a way to grab the entire bios using dd under linux? could this be sued to get a copy of the original bios, and then write this to the RD1?
Many thanks
Matt
[View Less]