2003-10-25 19:01:29 +02:00
|
|
|
#ifndef __82802AB_H__
|
|
|
|
#define __82802AB_H__ 1
|
|
|
|
|
2004-03-20 17:46:10 +01:00
|
|
|
extern int probe_82802ab(struct flashchip *flash);
|
|
|
|
extern int erase_82802ab(struct flashchip *flash);
|
2005-11-26 22:55:36 +01:00
|
|
|
extern int write_82802ab(struct flashchip *flash, uint8_t *buf);
|
2003-10-25 19:01:29 +02:00
|
|
|
|
2005-11-26 22:55:36 +01:00
|
|
|
extern __inline__ void toggle_ready_82802ab(volatile uint8_t *dst)
|
2003-10-25 19:01:29 +02:00
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t tmp1, tmp2;
|
2003-10-25 19:01:29 +02:00
|
|
|
|
|
|
|
tmp1 = *dst & 0x40;
|
|
|
|
|
|
|
|
while (i++ < 0xFFFFFF) {
|
|
|
|
tmp2 = *dst & 0x40;
|
|
|
|
if (tmp1 == tmp2) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tmp1 = tmp2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-01 21:44:21 +02:00
|
|
|
extern __inline__ void data_polling_82802ab(volatile uint8_t *dst,
|
|
|
|
uint8_t data)
|
2003-10-25 19:01:29 +02:00
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
2005-11-26 22:55:36 +01:00
|
|
|
uint8_t tmp;
|
2003-10-25 19:01:29 +02:00
|
|
|
|
|
|
|
data &= 0x80;
|
|
|
|
|
|
|
|
while (i++ < 0xFFFFFF) {
|
|
|
|
tmp = *dst & 0x80;
|
|
|
|
if (tmp == data) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-26 22:55:36 +01:00
|
|
|
extern __inline__ void protect_82802ab(volatile uint8_t *bios)
|
2003-10-25 19:01:29 +02:00
|
|
|
{
|
2007-04-01 21:44:21 +02:00
|
|
|
*(volatile uint8_t *)(bios + 0x5555) = 0xAA;
|
|
|
|
*(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
|
|
|
|
*(volatile uint8_t *)(bios + 0x5555) = 0xA0;
|
2003-10-25 19:01:29 +02:00
|
|
|
|
|
|
|
usleep(200);
|
|
|
|
}
|
|
|
|
|
2004-03-20 17:46:10 +01:00
|
|
|
#endif /* !__82802AB_H__ */
|