BootModeSel.h 303 B

1234567891011121314
  1. #ifndef BOOT_MODE_SEL_H__
  2. #define BOOT_MODE_SEL_H__
  3. void bootFromSPI(void);
  4. void bootFromNand(void);
  5. void bootFromUsbHost();
  6. void bootFromUsbDevice(int highspeed);
  7. void bootFromUart(void);
  8. void bootFromSD(int chipid, int bcheckfile);
  9. void bootFromEMMC(int chipid);
  10. void bootFromSpinand(void);
  11. #endif