pmc.h 485 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2016 Atmel Corporation
  3. * Wenyou.Yang <wenyou.yang@atmel.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __AT91_PMC_H__
  8. #define __AT91_PMC_H__
  9. struct pmc_platdata {
  10. struct at91_pmc *reg_base;
  11. };
  12. int at91_pmc_core_probe(struct udevice *dev);
  13. int at91_clk_sub_device_bind(struct udevice *dev, const char *drv_name);
  14. int at91_clk_of_xlate(struct clk *clk, struct fdtdec_phandle_args *args);
  15. int at91_clk_probe(struct udevice *dev);
  16. #endif