/* * Atheros AR71XX/AR724X/AR913X common routines * * Copyright (C) 2010-2011 Jaiganesh Narayanan * Copyright (C) 2008-2011 Gabor Juhos * Copyright (C) 2008 Imre Kaloz * * 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 #include #include #include #include #include #include #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 t; spin_lock_irqsave(&ath79_device_reset_lock, flags); t = ath79_reset_rr(ATH_RESET_REG_RESET_MODULE); ath79_reset_wr(ATH_RESET_REG_RESET_MODULE, 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 t; spin_lock_irqsave(&ath79_device_reset_lock, flags); t = ath79_reset_rr(ATH_RESET_REG_RESET_MODULE); ath79_reset_wr(ATH_RESET_REG_RESET_MODULE, t & ~mask); spin_unlock_irqrestore(&ath79_device_reset_lock, flags); } EXPORT_SYMBOL_GPL(ath79_device_reset_clear); #if defined(CONFIG_NMI_ARBITER_WORKAROUND) struct _nmi_workaround_func nmi_workaround_func; EXPORT_SYMBOL(nmi_workaround_func); #endif/*--- #if defined(CONFIG_NMI_ARBITER_WORKAROUND) ---*/