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