fsl_devdis.c 704 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2015 Freescale Semiconductor, Inc.
  3. * Author: Zhuoyu Zhang <Zhuoyu.Zhang@freescale.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/io.h>
  9. #include <asm/arch-ls102xa/immap_ls102xa.h>
  10. #include <asm/arch-ls102xa/config.h>
  11. #include <linux/compiler.h>
  12. #include <hwconfig.h>
  13. #include <fsl_devdis.h>
  14. void device_disable(const struct devdis_table *tbl, uint32_t num)
  15. {
  16. int i;
  17. struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
  18. /*
  19. * Extract hwconfig from environment and disable unused device.
  20. */
  21. for (i = 0; i < num; i++) {
  22. if (hwconfig_sub("devdis", tbl[i].name))
  23. setbits_be32(&gur->devdisr + tbl[i].offset,
  24. tbl[i].mask);
  25. }
  26. }