myriad of arm/adi additions. working on moving past arm7 into adiv5
[goodfet] / client / M29W640GB.py
1 """
2 http://www.tonews.com/thread/1644423/comp/sys/arm/getting_chip_selects_working_after_remap_on_the_at91r40008.html
3
4 This sets the base to 0x00000000 (illegal).
5 If you would like to have it at 0x00400000, change the register to
6 0x0040203E.
7
8 The base address contains the real top bits of the base address, no offset
9 from the range base.
10
11 I'd start addressing from e.g. 0x01000000, so all sizes will fit in. There
12 are plenty of free addresses with the AT91: you can fill only 64 Mbytes of
13 the 4 Gbytes of address space.
14 """
15
16 class M29W640G:
17     def __init__(self, addrE, pinE, addrG, pinG, addrW, pinW, chipnum, chip_base_addr=0x1000000):
18         self.addrE = addrE
19         self.pinE = pinE
20         self.addrG = addrG
21         self.pinG = pinG
22         self.addrW = addrW
23         self.pinW pinW
24         self.chipnum = chipnum
25         self.base_addr = chip_base_addr
26