Blame view

kernel/linux-imx6_3.14.28/arch/mips/ath79/common.c 2.8 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  /*
   *  Atheros AR71XX/AR724X/AR913X common routines
   *
   *  Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
   *  Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
   *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
   *
   *  Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
   *
   *  This program is free software; you can redistribute it and/or modify it
   *  under the terms of the GNU General Public License version 2 as published
   *  by the Free Software Foundation.
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/types.h>
  #include <linux/spinlock.h>
  
  #include <asm/mach-ath79/ath79.h>
  #include <asm/mach-ath79/ar71xx_regs.h>
  #include "common.h"
  
  static DEFINE_SPINLOCK(ath79_device_reset_lock);
  
  u32 ath79_cpu_freq;
  EXPORT_SYMBOL_GPL(ath79_cpu_freq);
  
  u32 ath79_ahb_freq;
  EXPORT_SYMBOL_GPL(ath79_ahb_freq);
  
  u32 ath79_ddr_freq;
  EXPORT_SYMBOL_GPL(ath79_ddr_freq);
  
  enum ath79_soc_type ath79_soc;
  unsigned int ath79_soc_rev;
  
  void __iomem *ath79_pll_base;
  void __iomem *ath79_reset_base;
  EXPORT_SYMBOL_GPL(ath79_reset_base);
  void __iomem *ath79_ddr_base;
  
  void ath79_ddr_wb_flush(u32 reg)
  {
  	void __iomem *flush_reg = ath79_ddr_base + reg;
  
  	/* Flush the DDR write buffer. */
  	__raw_writel(0x1, flush_reg);
  	while (__raw_readl(flush_reg) & 0x1)
  		;
  
  	/* It must be run twice. */
  	__raw_writel(0x1, flush_reg);
  	while (__raw_readl(flush_reg) & 0x1)
  		;
  }
  EXPORT_SYMBOL_GPL(ath79_ddr_wb_flush);
  
  void ath79_device_reset_set(u32 mask)
  {
  	unsigned long flags;
  	u32 reg;
  	u32 t;
  
  	if (soc_is_ar71xx())
  		reg = AR71XX_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar724x())
  		reg = AR724X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar913x())
  		reg = AR913X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar933x())
  		reg = AR933X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar934x())
  		reg = AR934X_RESET_REG_RESET_MODULE;
  	else if (soc_is_qca955x())
  		reg = QCA955X_RESET_REG_RESET_MODULE;
  	else
  		BUG();
  
  	spin_lock_irqsave(&ath79_device_reset_lock, flags);
  	t = ath79_reset_rr(reg);
  	ath79_reset_wr(reg, t | mask);
  	spin_unlock_irqrestore(&ath79_device_reset_lock, flags);
  }
  EXPORT_SYMBOL_GPL(ath79_device_reset_set);
  
  void ath79_device_reset_clear(u32 mask)
  {
  	unsigned long flags;
  	u32 reg;
  	u32 t;
  
  	if (soc_is_ar71xx())
  		reg = AR71XX_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar724x())
  		reg = AR724X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar913x())
  		reg = AR913X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar933x())
  		reg = AR933X_RESET_REG_RESET_MODULE;
  	else if (soc_is_ar934x())
  		reg = AR934X_RESET_REG_RESET_MODULE;
  	else if (soc_is_qca955x())
  		reg = QCA955X_RESET_REG_RESET_MODULE;
  	else
  		BUG();
  
  	spin_lock_irqsave(&ath79_device_reset_lock, flags);
  	t = ath79_reset_rr(reg);
  	ath79_reset_wr(reg, t & ~mask);
  	spin_unlock_irqrestore(&ath79_device_reset_lock, flags);
  }
  EXPORT_SYMBOL_GPL(ath79_device_reset_clear);