News:

I have updated the spam detection on registrations, and as such I am enabling new users.  If we have spam, I will change it back to by approval.

Main Menu

mtd sees flash

Started by sbingner, July 15, 2005, 06:30:10 AM

Previous topic - Next topic

0 Members and 3 Guests are viewing this topic.

sbingner

QuoteThe .s looks good, but you should use the WRITE_ADDR macro bushing posted eariler to write the control instructions to the flash chip (the data should be written without it because that's how the CPU sees the flash).

#define WRITE_ADDR(x,y) bios[(((x) & 0x7FFF)<<1) | (((x) & 0x8000) >> 15)]=(y)

So instead of:

 bios[UADDR1] = 0xAA;

You'd do:

 WRITE_ADDR(UADDR1, 0xAA);

I don't know if that will solve your segfaulting issue, but it will properly twiddle the lines on the Flash chip.

Also, because only lines A[1:15] are connected, you should only write 0x10000 bytes (0x8000 words) to the chip (A[16] isn't connected, so that just wraps around again).

I just defined the addresses as the proper addresses, why use the function?  All the function code seems to work fine, it's just getting pissy when the memory in the flash changes quickly or en-masse...

Yes the crash seems to be mixed with the program... it even ends up writing an address or two after the crash... everything it outputs as written was written properly


Anyways I'll try w/o mmap for the flash after work...

RobM

QuoteI just defined the addresses as the proper addresses, why use the function?  All the function code seems to work fine, it's just getting pissy when the memory in the flash changes quickly or en-masse...

It should be 0xAAA and 0x554 then.  That might be why...

sbingner

QuoteAlso, because only lines A[1:15] are connected, you should only write 0x10000 bytes (0x8000 words) to the chip (A[16] isn't connected, so that just wraps around again).

The chip is actually 0x40000 bytes, so it's 0x20000 bytes that are visible or 0x10000 words unless I've got something else mixed up like the 0x554?

RobM

Ahh, you're right.  The reason A[0] on the CPU isn't connected to the flash chip is because it's addressing -words-, which I didn't exactly realize at first.  I got myself good and confused.

Apparently when you access the flash chip in byte mode, you set "A[-1]" (high or low byte in the word) via D[15] when you're writing or reading.  Odd nomenclature in the AMD doc.

sbingner

Quote

It should be 0xAAA and 0x554 then.  That might be why...

That doesn't seem to make any difference...

RobM

Are you doing a jumpered internal boot through the serial port or booting off the HD?

sbingner

I'm on IRC if you want to come there...

I'm writing a loader via serial since my flash chip is erased heh, then booting from ide