sys_proto.h 365 B

1234567891011121314151617181920
  1. /*
  2. * (C) Copyright 2011
  3. * Helmut Raiger, HALE electronic GmbH, helmut.raiger@hale.at
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _SYS_PROTO_H_
  8. #define _SYS_PROTO_H_
  9. struct mxc_weimcs {
  10. u32 upper;
  11. u32 lower;
  12. u32 additional;
  13. };
  14. void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs);
  15. int mxc_mmc_init(bd_t *bis);
  16. u32 get_cpu_rev(void);
  17. #endif