emc.h 551 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2014 NVIDIA Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __SOC_TEGRA_EMC_H__
  9. #define __SOC_TEGRA_EMC_H__
  10. struct tegra_emc;
  11. int tegra_emc_prepare_timing_change(struct tegra_emc *emc,
  12. unsigned long rate);
  13. void tegra_emc_complete_timing_change(struct tegra_emc *emc,
  14. unsigned long rate);
  15. #endif /* __SOC_TEGRA_EMC_H__ */