tegra20_clocks.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __MACH_TEGRA20_CLOCK_H
  17. #define __MACH_TEGRA20_CLOCK_H
  18. extern struct clk_ops tegra_clk_32k_ops;
  19. extern struct clk_ops tegra_pll_ops;
  20. extern struct clk_ops tegra_clk_m_ops;
  21. extern struct clk_ops tegra_pll_div_ops;
  22. extern struct clk_ops tegra_pllx_ops;
  23. extern struct clk_ops tegra_plle_ops;
  24. extern struct clk_ops tegra_clk_double_ops;
  25. extern struct clk_ops tegra_cdev_clk_ops;
  26. extern struct clk_ops tegra_audio_sync_clk_ops;
  27. extern struct clk_ops tegra_super_ops;
  28. extern struct clk_ops tegra_cpu_ops;
  29. extern struct clk_ops tegra_twd_ops;
  30. extern struct clk_ops tegra_cop_ops;
  31. extern struct clk_ops tegra_bus_ops;
  32. extern struct clk_ops tegra_blink_clk_ops;
  33. extern struct clk_ops tegra_emc_clk_ops;
  34. extern struct clk_ops tegra_periph_clk_ops;
  35. extern struct clk_ops tegra_clk_shared_bus_ops;
  36. void tegra2_periph_clk_reset(struct clk_hw *hw, bool assert);
  37. void tegra2_cop_clk_reset(struct clk_hw *hw, bool assert);
  38. #endif