mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
b12b545836
Since the gpio output status on MPC8xxx cannot be read back, it has to be buffered locally. Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc> Signed-off-by: Mario Six <mario.six@gdsys.cc>
13 lines
335 B
C
13 lines
335 B
C
#ifndef __MPC8308_H_
|
|
#define __MPC8308_H_
|
|
|
|
void setbits_gpio0_out(u32 mask);
|
|
void clrbits_gpio0_out(u32 mask);
|
|
|
|
/* functions to be provided by board implementation */
|
|
void mpc8308_init(void);
|
|
void mpc8308_set_fpga_reset(unsigned state);
|
|
void mpc8308_setup_hw(void);
|
|
int mpc8308_get_fpga_done(unsigned fpga);
|
|
|
|
#endif /* __MPC8308_H_ */
|