sys_proto.h 399 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2011
  4. * Helmut Raiger, HALE electronic GmbH, helmut.raiger@hale.at
  5. */
  6. #ifndef _MX31_SYS_PROTO_H_
  7. #define _MX31_SYS_PROTO_H_
  8. #include <asm/mach-imx/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(struct bd_info *bis);
  16. #endif