Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 5 | * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 6 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 8 | */ |
| 9 | #ifndef __ASM_ARM_ARCH_CLK_H__ |
| 10 | #define __ASM_ARM_ARCH_CLK_H__ |
| 11 | |
| 12 | #include <asm/arch/hardware.h> |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 13 | #include <asm/arch/at91_pmc.h> |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 14 | #include <asm/global_data.h> |
| 15 | |
Wenyou Yang | 522f5a6 | 2015-10-30 09:47:02 +0800 | [diff] [blame] | 16 | #define GCK_CSS_SLOW_CLK 0 |
| 17 | #define GCK_CSS_MAIN_CLK 1 |
| 18 | #define GCK_CSS_PLLA_CLK 2 |
| 19 | #define GCK_CSS_UPLL_CLK 3 |
| 20 | #define GCK_CSS_MCK_CLK 4 |
| 21 | #define GCK_CSS_AUDIO_CLK 5 |
| 22 | |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 23 | static inline unsigned long get_cpu_clk_rate(void) |
| 24 | { |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 26 | return gd->arch.cpu_clk_rate_hz; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | static inline unsigned long get_main_clk_rate(void) |
| 30 | { |
| 31 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 32 | return gd->arch.main_clk_rate_hz; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | static inline unsigned long get_mck_clk_rate(void) |
| 36 | { |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 38 | return gd->arch.mck_rate_hz; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | static inline unsigned long get_plla_clk_rate(void) |
| 42 | { |
| 43 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 44 | return gd->arch.plla_rate_hz; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static inline unsigned long get_pllb_clk_rate(void) |
| 48 | { |
| 49 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 50 | return gd->arch.pllb_rate_hz; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 51 | } |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 52 | |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 53 | static inline u32 get_pllb_init(void) |
| 54 | { |
| 55 | DECLARE_GLOBAL_DATA_PTR; |
Simon Glass | e61accc | 2012-12-13 20:48:31 +0000 | [diff] [blame] | 56 | return gd->arch.at91_pllb_usb_init; |
Andreas Bießmann | f4c9f92 | 2011-06-12 01:49:11 +0000 | [diff] [blame] | 57 | } |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 58 | |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 59 | #ifdef CPU_HAS_H32MXDIV |
| 60 | static inline unsigned int get_h32mxdiv(void) |
| 61 | { |
| 62 | struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; |
| 63 | |
| 64 | return readl(&pmc->mckr) & AT91_PMC_MCKR_H32MXDIV; |
| 65 | } |
| 66 | #else |
| 67 | static inline unsigned int get_h32mxdiv(void) |
| 68 | { |
| 69 | return 0; |
| 70 | } |
| 71 | #endif |
| 72 | |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 73 | static inline unsigned long get_macb_pclk_rate(unsigned int dev_id) |
| 74 | { |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 75 | if (get_h32mxdiv()) |
| 76 | return get_mck_clk_rate() / 2; |
| 77 | else |
| 78 | return get_mck_clk_rate(); |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static inline unsigned long get_usart_clk_rate(unsigned int dev_id) |
| 82 | { |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 83 | if (get_h32mxdiv()) |
| 84 | return get_mck_clk_rate() / 2; |
| 85 | else |
| 86 | return get_mck_clk_rate(); |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Stelian Pop | f6f8665 | 2008-05-09 21:57:18 +0200 | [diff] [blame] | 89 | static inline unsigned long get_lcdc_clk_rate(unsigned int dev_id) |
| 90 | { |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 91 | return get_mck_clk_rate(); |
Stelian Pop | f6f8665 | 2008-05-09 21:57:18 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 94 | static inline unsigned long get_spi_clk_rate(unsigned int dev_id) |
| 95 | { |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 96 | if (get_h32mxdiv()) |
| 97 | return get_mck_clk_rate() / 2; |
| 98 | else |
| 99 | return get_mck_clk_rate(); |
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 102 | static inline unsigned long get_twi_clk_rate(unsigned int dev_id) |
| 103 | { |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 104 | if (get_h32mxdiv()) |
| 105 | return get_mck_clk_rate() / 2; |
| 106 | else |
| 107 | return get_mck_clk_rate(); |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 108 | } |
Stelian Pop | f6f8665 | 2008-05-09 21:57:18 +0200 | [diff] [blame] | 109 | |
Reinhard Meyer | c718a56 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 110 | static inline unsigned long get_mci_clk_rate(void) |
| 111 | { |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 112 | if (get_h32mxdiv()) |
| 113 | return get_mck_clk_rate() / 2; |
| 114 | else |
| 115 | return get_mck_clk_rate(); |
| 116 | } |
| 117 | |
| 118 | static inline unsigned long get_pit_clk_rate(void) |
| 119 | { |
| 120 | if (get_h32mxdiv()) |
| 121 | return get_mck_clk_rate() / 2; |
| 122 | else |
| 123 | return get_mck_clk_rate(); |
Reinhard Meyer | c718a56 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 124 | } |
| 125 | |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 126 | int at91_clock_init(unsigned long main_clock); |
Bo Shen | 60f3dd3 | 2013-05-12 22:40:54 +0000 | [diff] [blame] | 127 | void at91_periph_clk_enable(int id); |
Bo Shen | 52e0009 | 2014-08-06 17:24:54 +0800 | [diff] [blame] | 128 | void at91_periph_clk_disable(int id); |
Wenyou Yang | 522f5a6 | 2015-10-30 09:47:02 +0800 | [diff] [blame] | 129 | int at91_enable_periph_generated_clk(u32 id, u32 clk_source, u32 div); |
| 130 | u32 at91_get_periph_generated_clk(u32 id); |
Wenyou Yang | 49c68c2 | 2016-02-03 10:16:48 +0800 | [diff] [blame] | 131 | void at91_system_clk_enable(int sys_clk); |
| 132 | void at91_system_clk_disable(int sys_clk); |
Wenyou Yang | 335c548 | 2016-02-02 11:11:51 +0800 | [diff] [blame] | 133 | int at91_upll_clk_enable(void); |
| 134 | int at91_upll_clk_disable(void); |
| 135 | void at91_usb_clk_init(u32 value); |
Wenyou Yang | 0a30fcb | 2016-02-03 10:20:43 +0800 | [diff] [blame^] | 136 | int at91_pllb_clk_enable(u32 pllbr); |
| 137 | int at91_pllb_clk_disable(void); |
Wenyou Yang | 522f5a6 | 2015-10-30 09:47:02 +0800 | [diff] [blame] | 138 | |
Stelian Pop | 7d42a22 | 2008-01-31 21:15:53 +0000 | [diff] [blame] | 139 | #endif /* __ASM_ARM_ARCH_CLK_H__ */ |