forked from Minki/linux
e731f3146f
SoC changes, a substantial part of this is cleanup of some of the older platforms that used to have a bunch of board files. In particular: - Removal of non-DT i.MX platforms that haven't seen activity in years, it's time to remove them. - A bunch of cleanup and removal of platform data for TI/OMAP platforms, moving over to genpd for power/reset control (yay!) - Major cleanup of Samsung S3C24xx and S3C64xx platforms, moving them closer to multiplatform support (not quite there yet, but getting close). THere are a few other changes too, smaller fixlets, etc. For new platform support, the primary ones re: - New SoC: Hisilicon SD5203, ARM926EJ-S platform. - Cpufreq support for i.MX7ULP -----BEGIN PGP SIGNATURE----- iQJDBAABCgAtFiEElf+HevZ4QCAJmMQ+jBrnPN6EHHcFAl+TT4gPHG9sb2ZAbGl4 b20ubmV0AAoJEIwa5zzehBx322MP/1mI56SyOFx30AqtWBPSjHJp+DzhOObyb4vD ndYuicBIn9tJwvVRBBZkfsbIU8EENVwrN3hOpesaj9L7xiqOqKakcnyC1REYmpIs 8XBDfdZzy5PrMHIu3fF1ZDCQyO7KndGf5DfLVxJtcf1tSPQyQCuIA3FtS6d8Bxnz r491+om67ucnlFD5X0Spm3RdZH+ECmXx2iXwoS0Zi7P+X+S+ovG8wBV/X0ggeoBc Zgi4W01SiRupmSVZ6PA7FvWaLGQErQAALQOcFtMcFgjeWzc1v2QzcURELH8JW7ro 72AH9st1Kvi3hoN2HNNzUnNUdQvZ+AdH8skMIpN/e1cBYqYStAF3gm/R9h+iVHbG GMmgzXHAFErfAW2UcF8tq1CzvQ5ChcTLNXdeoa8CeQbcDfocF3EyuKSPuDH+ve0H kk4tPesTAc6XCEVwLaGnoC75sdum5mSi8h9vqhln2KCdeTY7jxzH9YGHjm71Supb kV9vqo5Q5U/c5l2nU4r5q/DZdIahKsk3HIQZ0iG7BifAzamaTh4uyLVjtM6HSwNz tdHZaxoHd/PLI5IoeggFelx6qgvK5qVRLP0evgOdTLRFLj/ZbrOf0Q7DjdTy2BjZ Lgq461QqNapOzxq43G2IDT2+P62Q1+d+YLCKBgaGQaJicyU5m9STCNo3UBb1qH1h W6UwGF5z =0+Ee -----END PGP SIGNATURE----- Merge tag 'armsoc-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc Pull ARM SoC platform updates from Olof Johansson: "SoC changes, a substantial part of this is cleanup of some of the older platforms that used to have a bunch of board files. In particular: - Remove non-DT i.MX platforms that haven't seen activity in years, it's time to remove them. - A bunch of cleanup and removal of platform data for TI/OMAP platforms, moving over to genpd for power/reset control (yay!) - Major cleanup of Samsung S3C24xx and S3C64xx platforms, moving them closer to multiplatform support (not quite there yet, but getting close). There are a few other changes too, smaller fixlets, etc. For new platform support, the primary ones are: - New SoC: Hisilicon SD5203, ARM926EJ-S platform. - Cpufreq support for i.MX7ULP" * tag 'armsoc-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (121 commits) ARM: mstar: Select MStar intc ARM: stm32: Replace HTTP links with HTTPS ones ARM: debug: add UART early console support for SD5203 ARM: hisi: add support for SD5203 SoC ARM: omap3: enable off mode automatically clk: imx: imx35: Remove mx35_clocks_init() clk: imx: imx31: Remove mx31_clocks_init() clk: imx: imx27: Remove mx27_clocks_init() ARM: imx: Remove unused definitions ARM: imx35: Retrieve the IIM base address from devicetree ARM: imx3: Retrieve the AVIC base address from devicetree ARM: imx3: Retrieve the CCM base address from devicetree ARM: imx31: Retrieve the IIM base address from devicetree ARM: imx27: Retrieve the CCM base address from devicetree ARM: imx27: Retrieve the SYSCTRL base address from devicetree ARM: s3c64xx: bring back notes from removed debug-macro.S ARM: s3c24xx: fix Wunused-variable warning on !MMU ARM: samsung: fix PM debug build with DEBUG_LL but !MMU MAINTAINERS: mark linux-samsung-soc list non-moderated ARM: imx: Remove remnant board file support pieces ...
142 lines
2.9 KiB
C
142 lines
2.9 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* OMAP IOMMU quirks for various TI SoCs
|
|
*
|
|
* Copyright (C) 2015-2019 Texas Instruments Incorporated - https://www.ti.com/
|
|
* Suman Anna <s-anna@ti.com>
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
|
#include <linux/err.h>
|
|
#include <linux/clk.h>
|
|
#include <linux/list.h>
|
|
|
|
#include "clockdomain.h"
|
|
#include "powerdomain.h"
|
|
|
|
struct pwrdm_link {
|
|
struct device *dev;
|
|
struct powerdomain *pwrdm;
|
|
struct list_head node;
|
|
};
|
|
|
|
static DEFINE_SPINLOCK(iommu_lock);
|
|
static struct clockdomain *emu_clkdm;
|
|
static atomic_t emu_count;
|
|
|
|
static void omap_iommu_dra7_emu_swsup_config(struct platform_device *pdev,
|
|
bool enable)
|
|
{
|
|
struct device_node *np = pdev->dev.of_node;
|
|
unsigned long flags;
|
|
|
|
if (!of_device_is_compatible(np, "ti,dra7-dsp-iommu"))
|
|
return;
|
|
|
|
if (!emu_clkdm) {
|
|
emu_clkdm = clkdm_lookup("emu_clkdm");
|
|
if (WARN_ON_ONCE(!emu_clkdm))
|
|
return;
|
|
}
|
|
|
|
spin_lock_irqsave(&iommu_lock, flags);
|
|
|
|
if (enable && (atomic_inc_return(&emu_count) == 1))
|
|
clkdm_deny_idle(emu_clkdm);
|
|
else if (!enable && (atomic_dec_return(&emu_count) == 0))
|
|
clkdm_allow_idle(emu_clkdm);
|
|
|
|
spin_unlock_irqrestore(&iommu_lock, flags);
|
|
}
|
|
|
|
static struct powerdomain *_get_pwrdm(struct device *dev)
|
|
{
|
|
struct clk *clk;
|
|
struct clk_hw_omap *hwclk;
|
|
struct clockdomain *clkdm;
|
|
struct powerdomain *pwrdm = NULL;
|
|
struct pwrdm_link *entry;
|
|
unsigned long flags;
|
|
static LIST_HEAD(cache);
|
|
|
|
spin_lock_irqsave(&iommu_lock, flags);
|
|
|
|
list_for_each_entry(entry, &cache, node) {
|
|
if (entry->dev == dev) {
|
|
pwrdm = entry->pwrdm;
|
|
break;
|
|
}
|
|
}
|
|
|
|
spin_unlock_irqrestore(&iommu_lock, flags);
|
|
|
|
if (pwrdm)
|
|
return pwrdm;
|
|
|
|
clk = of_clk_get(dev->of_node->parent, 0);
|
|
if (IS_ERR(clk)) {
|
|
dev_err(dev, "no fck found\n");
|
|
return NULL;
|
|
}
|
|
|
|
hwclk = to_clk_hw_omap(__clk_get_hw(clk));
|
|
clk_put(clk);
|
|
if (!hwclk || !hwclk->clkdm_name) {
|
|
dev_err(dev, "no hwclk data\n");
|
|
return NULL;
|
|
}
|
|
|
|
clkdm = clkdm_lookup(hwclk->clkdm_name);
|
|
if (!clkdm) {
|
|
dev_err(dev, "clkdm not found: %s\n", hwclk->clkdm_name);
|
|
return NULL;
|
|
}
|
|
|
|
pwrdm = clkdm_get_pwrdm(clkdm);
|
|
if (!pwrdm) {
|
|
dev_err(dev, "pwrdm not found: %s\n", clkdm->name);
|
|
return NULL;
|
|
}
|
|
|
|
entry = kmalloc(sizeof(*entry), GFP_KERNEL);
|
|
if (entry) {
|
|
entry->dev = dev;
|
|
entry->pwrdm = pwrdm;
|
|
spin_lock_irqsave(&iommu_lock, flags);
|
|
list_add(&entry->node, &cache);
|
|
spin_unlock_irqrestore(&iommu_lock, flags);
|
|
}
|
|
|
|
return pwrdm;
|
|
}
|
|
|
|
int omap_iommu_set_pwrdm_constraint(struct platform_device *pdev, bool request,
|
|
u8 *pwrst)
|
|
{
|
|
struct powerdomain *pwrdm;
|
|
u8 next_pwrst;
|
|
int ret = 0;
|
|
|
|
pwrdm = _get_pwrdm(&pdev->dev);
|
|
if (!pwrdm)
|
|
return -ENODEV;
|
|
|
|
if (request) {
|
|
*pwrst = pwrdm_read_next_pwrst(pwrdm);
|
|
omap_iommu_dra7_emu_swsup_config(pdev, true);
|
|
}
|
|
|
|
if (*pwrst > PWRDM_POWER_RET)
|
|
goto out;
|
|
|
|
next_pwrst = request ? PWRDM_POWER_ON : *pwrst;
|
|
|
|
ret = pwrdm_set_next_pwrst(pwrdm, next_pwrst);
|
|
|
|
out:
|
|
if (!request)
|
|
omap_iommu_dra7_emu_swsup_config(pdev, false);
|
|
|
|
return ret;
|
|
}
|