mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2745 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
11 lines
451 B
C
11 lines
451 B
C
#ifndef __SHARPLHF00L04_H__
|
|
#define __SHARPLHF00L04_H__ 1
|
|
|
|
extern int probe_lhf00l04(struct flashchip *flash);
|
|
extern int erase_lhf00l04(struct flashchip *flash);
|
|
extern int write_lhf00l04(struct flashchip *flash, uint8_t *buf);
|
|
extern void toggle_ready_lhf00l04(volatile uint8_t *dst);
|
|
extern void data_polling_lhf00l04(volatile uint8_t *dst, uint8_t data);
|
|
extern void protect_lhf00l04(volatile uint8_t *bios);
|
|
|
|
#endif /* !__SHARPLHF00L04_H__ */
|