License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-07-23 22:36:48 +08:00
|
|
|
/*
|
|
|
|
* Alchemy clocks.
|
|
|
|
*
|
|
|
|
* Exposes all configurable internal clock sources to the clk framework.
|
|
|
|
*
|
|
|
|
* We have:
|
|
|
|
* - Root source, usually 12MHz supplied by an external crystal
|
|
|
|
* - 3 PLLs which generate multiples of root rate [AUX, CPU, AUX2]
|
|
|
|
*
|
|
|
|
* Dividers:
|
|
|
|
* - 6 clock dividers with:
|
|
|
|
* * selectable source [one of the PLLs],
|
|
|
|
* * output divided between [2 .. 512 in steps of 2] (!Au1300)
|
|
|
|
* or [1 .. 256 in steps of 1] (Au1300),
|
|
|
|
* * can be enabled individually.
|
|
|
|
*
|
|
|
|
* - up to 6 "internal" (fixed) consumers which:
|
|
|
|
* * take either AUXPLL or one of the above 6 dividers as input,
|
|
|
|
* * divide this input by 1, 2, or 4 (and 3 on Au1300).
|
|
|
|
* * can be disabled separately.
|
|
|
|
*
|
|
|
|
* Misc clocks:
|
|
|
|
* - sysbus clock: CPU core clock (CPUPLL) divided by 2, 3 or 4.
|
|
|
|
* depends on board design and should be set by bootloader, read-only.
|
|
|
|
* - peripheral clock: half the rate of sysbus clock, source for a lot
|
|
|
|
* of peripheral blocks, read-only.
|
|
|
|
* - memory clock: clk rate to main memory chips, depends on board
|
|
|
|
* design and is read-only,
|
|
|
|
* - lrclk: the static bus clock signal for synchronous operation.
|
|
|
|
* depends on board design, must be set by bootloader,
|
|
|
|
* but may be required to correctly configure devices attached to
|
|
|
|
* the static bus. The Au1000/1500/1100 manuals call it LCLK, on
|
|
|
|
* later models it's called RCLK.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
2015-06-20 06:00:46 +08:00
|
|
|
#include <linux/clk.h>
|
2014-07-23 22:36:48 +08:00
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <linux/clkdev.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <asm/mach-au1x00/au1000.h>
|
|
|
|
|
|
|
|
/* Base clock: 12MHz is the default in all databooks, and I haven't
|
|
|
|
* found any board yet which uses a different rate.
|
|
|
|
*/
|
|
|
|
#define ALCHEMY_ROOTCLK_RATE 12000000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the internal sources which can be driven by the PLLs and dividers.
|
|
|
|
* Names taken from the databooks, refer to them for more information,
|
|
|
|
* especially which ones are share a clock line.
|
|
|
|
*/
|
|
|
|
static const char * const alchemy_au1300_intclknames[] = {
|
|
|
|
"lcd_intclk", "gpemgp_clk", "maempe_clk", "maebsa_clk",
|
|
|
|
"EXTCLK0", "EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_au1200_intclknames[] = {
|
|
|
|
"lcd_intclk", NULL, NULL, NULL, "EXTCLK0", "EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_au1550_intclknames[] = {
|
|
|
|
"usb_clk", "psc0_intclk", "psc1_intclk", "pci_clko",
|
|
|
|
"EXTCLK0", "EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_au1100_intclknames[] = {
|
|
|
|
"usb_clk", "lcd_intclk", NULL, "i2s_clk", "EXTCLK0", "EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_au1500_intclknames[] = {
|
|
|
|
NULL, "usbd_clk", "usbh_clk", "pci_clko", "EXTCLK0", "EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_au1000_intclknames[] = {
|
|
|
|
"irda_clk", "usbd_clk", "usbh_clk", "i2s_clk", "EXTCLK0",
|
|
|
|
"EXTCLK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
/* aliases for a few on-chip sources which are either shared
|
|
|
|
* or have gone through name changes.
|
|
|
|
*/
|
|
|
|
static struct clk_aliastable {
|
|
|
|
char *alias;
|
|
|
|
char *base;
|
|
|
|
int cputype;
|
|
|
|
} alchemy_clk_aliases[] __initdata = {
|
|
|
|
{ "usbh_clk", "usb_clk", ALCHEMY_CPU_AU1100 },
|
|
|
|
{ "usbd_clk", "usb_clk", ALCHEMY_CPU_AU1100 },
|
|
|
|
{ "irda_clk", "usb_clk", ALCHEMY_CPU_AU1100 },
|
|
|
|
{ "usbh_clk", "usb_clk", ALCHEMY_CPU_AU1550 },
|
|
|
|
{ "usbd_clk", "usb_clk", ALCHEMY_CPU_AU1550 },
|
|
|
|
{ "psc2_intclk", "usb_clk", ALCHEMY_CPU_AU1550 },
|
|
|
|
{ "psc3_intclk", "EXTCLK0", ALCHEMY_CPU_AU1550 },
|
|
|
|
{ "psc0_intclk", "EXTCLK0", ALCHEMY_CPU_AU1200 },
|
|
|
|
{ "psc1_intclk", "EXTCLK1", ALCHEMY_CPU_AU1200 },
|
|
|
|
{ "psc0_intclk", "EXTCLK0", ALCHEMY_CPU_AU1300 },
|
|
|
|
{ "psc2_intclk", "EXTCLK0", ALCHEMY_CPU_AU1300 },
|
|
|
|
{ "psc1_intclk", "EXTCLK1", ALCHEMY_CPU_AU1300 },
|
|
|
|
{ "psc3_intclk", "EXTCLK1", ALCHEMY_CPU_AU1300 },
|
|
|
|
|
|
|
|
{ NULL, NULL, 0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
#define IOMEM(x) ((void __iomem *)(KSEG1ADDR(CPHYSADDR(x))))
|
|
|
|
|
|
|
|
/* access locks to SYS_FREQCTRL0/1 and SYS_CLKSRC registers */
|
|
|
|
static spinlock_t alchemy_clk_fg0_lock;
|
|
|
|
static spinlock_t alchemy_clk_fg1_lock;
|
|
|
|
static spinlock_t alchemy_clk_csrc_lock;
|
|
|
|
|
|
|
|
/* CPU Core clock *****************************************************/
|
|
|
|
|
|
|
|
static unsigned long alchemy_clk_cpu_recalc(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
unsigned long t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On early Au1000, sys_cpupll was write-only. Since these
|
|
|
|
* silicon versions of Au1000 are not sold, we don't bend
|
|
|
|
* over backwards trying to determine the frequency.
|
|
|
|
*/
|
|
|
|
if (unlikely(au1xxx_cpu_has_pll_wo()))
|
|
|
|
t = 396000000;
|
|
|
|
else {
|
|
|
|
t = alchemy_rdsys(AU1000_SYS_CPUPLL) & 0x7f;
|
2015-02-18 18:01:56 +08:00
|
|
|
if (alchemy_get_cputype() < ALCHEMY_CPU_AU1300)
|
|
|
|
t &= 0x3f;
|
2014-07-23 22:36:48 +08:00
|
|
|
t *= parent_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2015-01-29 23:06:43 +08:00
|
|
|
void __init alchemy_set_lpj(void)
|
|
|
|
{
|
|
|
|
preset_lpj = alchemy_clk_cpu_recalc(NULL, ALCHEMY_ROOTCLK_RATE);
|
|
|
|
preset_lpj /= 2 * HZ;
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:51:05 +08:00
|
|
|
static const struct clk_ops alchemy_clkops_cpu = {
|
2014-07-23 22:36:48 +08:00
|
|
|
.recalc_rate = alchemy_clk_cpu_recalc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk __init *alchemy_clk_setup_cpu(const char *parent_name,
|
|
|
|
int ctype)
|
|
|
|
{
|
|
|
|
struct clk_init_data id;
|
|
|
|
struct clk_hw *h;
|
|
|
|
|
|
|
|
h = kzalloc(sizeof(*h), GFP_KERNEL);
|
|
|
|
if (!h)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
id.name = ALCHEMY_CPU_CLK;
|
|
|
|
id.parent_names = &parent_name;
|
|
|
|
id.num_parents = 1;
|
2014-07-23 22:36:57 +08:00
|
|
|
id.flags = CLK_IS_BASIC;
|
2014-07-23 22:36:48 +08:00
|
|
|
id.ops = &alchemy_clkops_cpu;
|
|
|
|
h->init = &id;
|
|
|
|
|
|
|
|
return clk_register(NULL, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* AUXPLLs ************************************************************/
|
|
|
|
|
|
|
|
struct alchemy_auxpll_clk {
|
|
|
|
struct clk_hw hw;
|
|
|
|
unsigned long reg; /* au1300 has also AUXPLL2 */
|
|
|
|
int maxmult; /* max multiplier */
|
|
|
|
};
|
|
|
|
#define to_auxpll_clk(x) container_of(x, struct alchemy_auxpll_clk, hw)
|
|
|
|
|
|
|
|
static unsigned long alchemy_clk_aux_recalc(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_auxpll_clk *a = to_auxpll_clk(hw);
|
|
|
|
|
|
|
|
return (alchemy_rdsys(a->reg) & 0xff) * parent_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_aux_setr(struct clk_hw *hw,
|
|
|
|
unsigned long rate,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_auxpll_clk *a = to_auxpll_clk(hw);
|
|
|
|
unsigned long d = rate;
|
|
|
|
|
|
|
|
if (rate)
|
|
|
|
d /= parent_rate;
|
|
|
|
else
|
|
|
|
d = 0;
|
|
|
|
|
|
|
|
/* minimum is 84MHz, max is 756-1032 depending on variant */
|
|
|
|
if (((d < 7) && (d != 0)) || (d > a->maxmult))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
alchemy_wrsys(d, a->reg);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long alchemy_clk_aux_roundr(struct clk_hw *hw,
|
|
|
|
unsigned long rate,
|
|
|
|
unsigned long *parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_auxpll_clk *a = to_auxpll_clk(hw);
|
|
|
|
unsigned long mult;
|
|
|
|
|
|
|
|
if (!rate || !*parent_rate)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mult = rate / (*parent_rate);
|
|
|
|
|
|
|
|
if (mult && (mult < 7))
|
|
|
|
mult = 7;
|
|
|
|
if (mult > a->maxmult)
|
|
|
|
mult = a->maxmult;
|
|
|
|
|
|
|
|
return (*parent_rate) * mult;
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:51:05 +08:00
|
|
|
static const struct clk_ops alchemy_clkops_aux = {
|
2014-07-23 22:36:48 +08:00
|
|
|
.recalc_rate = alchemy_clk_aux_recalc,
|
|
|
|
.set_rate = alchemy_clk_aux_setr,
|
|
|
|
.round_rate = alchemy_clk_aux_roundr,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct clk __init *alchemy_clk_setup_aux(const char *parent_name,
|
|
|
|
char *name, int maxmult,
|
|
|
|
unsigned long reg)
|
|
|
|
{
|
|
|
|
struct clk_init_data id;
|
|
|
|
struct clk *c;
|
|
|
|
struct alchemy_auxpll_clk *a;
|
|
|
|
|
|
|
|
a = kzalloc(sizeof(*a), GFP_KERNEL);
|
|
|
|
if (!a)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
id.name = name;
|
|
|
|
id.parent_names = &parent_name;
|
|
|
|
id.num_parents = 1;
|
2014-07-23 22:36:57 +08:00
|
|
|
id.flags = CLK_GET_RATE_NOCACHE;
|
2014-07-23 22:36:48 +08:00
|
|
|
id.ops = &alchemy_clkops_aux;
|
|
|
|
|
|
|
|
a->reg = reg;
|
|
|
|
a->maxmult = maxmult;
|
|
|
|
a->hw.init = &id;
|
|
|
|
|
|
|
|
c = clk_register(NULL, &a->hw);
|
|
|
|
if (!IS_ERR(c))
|
|
|
|
clk_register_clkdev(c, name, NULL);
|
|
|
|
else
|
|
|
|
kfree(a);
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sysbus_clk *********************************************************/
|
|
|
|
|
|
|
|
static struct clk __init *alchemy_clk_setup_sysbus(const char *pn)
|
|
|
|
{
|
|
|
|
unsigned long v = (alchemy_rdsys(AU1000_SYS_POWERCTRL) & 3) + 2;
|
|
|
|
struct clk *c;
|
|
|
|
|
|
|
|
c = clk_register_fixed_factor(NULL, ALCHEMY_SYSBUS_CLK,
|
|
|
|
pn, 0, 1, v);
|
|
|
|
if (!IS_ERR(c))
|
|
|
|
clk_register_clkdev(c, ALCHEMY_SYSBUS_CLK, NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Peripheral Clock ***************************************************/
|
|
|
|
|
|
|
|
static struct clk __init *alchemy_clk_setup_periph(const char *pn)
|
|
|
|
{
|
|
|
|
/* Peripheral clock runs at half the rate of sysbus clk */
|
|
|
|
struct clk *c;
|
|
|
|
|
|
|
|
c = clk_register_fixed_factor(NULL, ALCHEMY_PERIPH_CLK,
|
|
|
|
pn, 0, 1, 2);
|
|
|
|
if (!IS_ERR(c))
|
|
|
|
clk_register_clkdev(c, ALCHEMY_PERIPH_CLK, NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mem clock **********************************************************/
|
|
|
|
|
|
|
|
static struct clk __init *alchemy_clk_setup_mem(const char *pn, int ct)
|
|
|
|
{
|
|
|
|
void __iomem *addr = IOMEM(AU1000_MEM_PHYS_ADDR);
|
|
|
|
unsigned long v;
|
|
|
|
struct clk *c;
|
|
|
|
int div;
|
|
|
|
|
|
|
|
switch (ct) {
|
|
|
|
case ALCHEMY_CPU_AU1550:
|
|
|
|
case ALCHEMY_CPU_AU1200:
|
|
|
|
v = __raw_readl(addr + AU1550_MEM_SDCONFIGB);
|
|
|
|
div = (v & (1 << 15)) ? 1 : 2;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1300:
|
|
|
|
v = __raw_readl(addr + AU1550_MEM_SDCONFIGB);
|
|
|
|
div = (v & (1 << 31)) ? 1 : 2;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1000:
|
|
|
|
case ALCHEMY_CPU_AU1500:
|
|
|
|
case ALCHEMY_CPU_AU1100:
|
|
|
|
default:
|
|
|
|
div = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = clk_register_fixed_factor(NULL, ALCHEMY_MEM_CLK, pn,
|
|
|
|
0, 1, div);
|
|
|
|
if (!IS_ERR(c))
|
|
|
|
clk_register_clkdev(c, ALCHEMY_MEM_CLK, NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lrclk: external synchronous static bus clock ***********************/
|
|
|
|
|
2015-01-29 23:06:42 +08:00
|
|
|
static struct clk __init *alchemy_clk_setup_lrclk(const char *pn, int t)
|
2014-07-23 22:36:48 +08:00
|
|
|
{
|
2015-01-29 23:06:42 +08:00
|
|
|
/* Au1000, Au1500: MEM_STCFG0[11]: If bit is set, lrclk=pclk/5,
|
|
|
|
* otherwise lrclk=pclk/4.
|
|
|
|
* All other variants: MEM_STCFG0[15:13] = divisor.
|
2014-07-23 22:36:48 +08:00
|
|
|
* L/RCLK = periph_clk / (divisor + 1)
|
|
|
|
* On Au1000, Au1500, Au1100 it's called LCLK,
|
|
|
|
* on later models it's called RCLK, but it's the same thing.
|
|
|
|
*/
|
|
|
|
struct clk *c;
|
2015-01-29 23:06:42 +08:00
|
|
|
unsigned long v = alchemy_rdsmem(AU1000_MEM_STCFG0);
|
2014-07-23 22:36:48 +08:00
|
|
|
|
2015-01-29 23:06:42 +08:00
|
|
|
switch (t) {
|
|
|
|
case ALCHEMY_CPU_AU1000:
|
|
|
|
case ALCHEMY_CPU_AU1500:
|
|
|
|
v = 4 + ((v >> 11) & 1);
|
|
|
|
break;
|
|
|
|
default: /* all other models */
|
|
|
|
v = ((v >> 13) & 7) + 1;
|
|
|
|
}
|
2014-07-23 22:36:48 +08:00
|
|
|
c = clk_register_fixed_factor(NULL, ALCHEMY_LR_CLK,
|
|
|
|
pn, 0, 1, v);
|
|
|
|
if (!IS_ERR(c))
|
|
|
|
clk_register_clkdev(c, ALCHEMY_LR_CLK, NULL);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clock dividers and muxes *******************************************/
|
|
|
|
|
|
|
|
/* data for fgen and csrc mux-dividers */
|
|
|
|
struct alchemy_fgcs_clk {
|
|
|
|
struct clk_hw hw;
|
|
|
|
spinlock_t *reglock; /* register lock */
|
|
|
|
unsigned long reg; /* SYS_FREQCTRL0/1 */
|
|
|
|
int shift; /* offset in register */
|
|
|
|
int parent; /* parent before disable [Au1300] */
|
|
|
|
int isen; /* is it enabled? */
|
|
|
|
int *dt; /* dividertable for csrc */
|
|
|
|
};
|
|
|
|
#define to_fgcs_clk(x) container_of(x, struct alchemy_fgcs_clk, hw)
|
|
|
|
|
|
|
|
static long alchemy_calc_div(unsigned long rate, unsigned long prate,
|
|
|
|
int scale, int maxdiv, unsigned long *rv)
|
|
|
|
{
|
|
|
|
long div1, div2;
|
|
|
|
|
|
|
|
div1 = prate / rate;
|
|
|
|
if ((prate / div1) > rate)
|
|
|
|
div1++;
|
|
|
|
|
|
|
|
if (scale == 2) { /* only div-by-multiple-of-2 possible */
|
|
|
|
if (div1 & 1)
|
|
|
|
div1++; /* stay <=prate */
|
|
|
|
}
|
|
|
|
|
|
|
|
div2 = (div1 / scale) - 1; /* value to write to register */
|
|
|
|
|
|
|
|
if (div2 > maxdiv)
|
|
|
|
div2 = maxdiv;
|
|
|
|
if (rv)
|
|
|
|
*rv = div2;
|
|
|
|
|
|
|
|
div1 = ((div2 + 1) * scale);
|
|
|
|
return div1;
|
|
|
|
}
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
static int alchemy_clk_fgcs_detr(struct clk_hw *hw,
|
|
|
|
struct clk_rate_request *req,
|
|
|
|
int scale, int maxdiv)
|
2014-07-23 22:36:48 +08:00
|
|
|
{
|
2015-07-31 08:20:57 +08:00
|
|
|
struct clk_hw *pc, *bpc, *free;
|
2014-07-23 22:36:48 +08:00
|
|
|
long tdv, tpr, pr, nr, br, bpr, diff, lastdiff;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
lastdiff = INT_MAX;
|
|
|
|
bpr = 0;
|
|
|
|
bpc = NULL;
|
|
|
|
br = -EINVAL;
|
|
|
|
free = NULL;
|
|
|
|
|
|
|
|
/* look at the rates each enabled parent supplies and select
|
|
|
|
* the one that gets closest to but not over the requested rate.
|
|
|
|
*/
|
|
|
|
for (j = 0; j < 7; j++) {
|
2015-07-31 08:20:57 +08:00
|
|
|
pc = clk_hw_get_parent_by_index(hw, j);
|
2014-07-23 22:36:48 +08:00
|
|
|
if (!pc)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* if this parent is currently unused, remember it.
|
2014-10-20 21:40:01 +08:00
|
|
|
* XXX: we would actually want clk_has_active_children()
|
|
|
|
* but this is a good-enough approximation for now.
|
2014-07-23 22:36:48 +08:00
|
|
|
*/
|
2015-07-31 08:20:57 +08:00
|
|
|
if (!clk_hw_is_prepared(pc)) {
|
2014-07-23 22:36:48 +08:00
|
|
|
if (!free)
|
|
|
|
free = pc;
|
|
|
|
}
|
|
|
|
|
2015-07-31 08:20:57 +08:00
|
|
|
pr = clk_hw_get_rate(pc);
|
2015-07-08 02:48:08 +08:00
|
|
|
if (pr < req->rate)
|
2014-07-23 22:36:48 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* what can hardware actually provide */
|
2015-07-08 02:48:08 +08:00
|
|
|
tdv = alchemy_calc_div(req->rate, pr, scale, maxdiv, NULL);
|
2014-07-23 22:36:48 +08:00
|
|
|
nr = pr / tdv;
|
2015-07-08 02:48:08 +08:00
|
|
|
diff = req->rate - nr;
|
|
|
|
if (nr > req->rate)
|
2014-07-23 22:36:48 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (diff < lastdiff) {
|
|
|
|
lastdiff = diff;
|
|
|
|
bpr = pr;
|
|
|
|
bpc = pc;
|
|
|
|
br = nr;
|
|
|
|
}
|
|
|
|
if (diff == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we couldn't get the exact rate we wanted from the enabled
|
|
|
|
* parents, maybe we can tell an available disabled/inactive one
|
|
|
|
* to give us a rate we can divide down to the requested rate.
|
|
|
|
*/
|
|
|
|
if (lastdiff && free) {
|
|
|
|
for (j = (maxdiv == 4) ? 1 : scale; j <= maxdiv; j += scale) {
|
2015-07-08 02:48:08 +08:00
|
|
|
tpr = req->rate * j;
|
2014-07-23 22:36:48 +08:00
|
|
|
if (tpr < 0)
|
|
|
|
break;
|
2015-07-31 08:20:57 +08:00
|
|
|
pr = clk_hw_round_rate(free, tpr);
|
2014-07-23 22:36:48 +08:00
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
tdv = alchemy_calc_div(req->rate, pr, scale, maxdiv,
|
|
|
|
NULL);
|
2014-07-23 22:36:48 +08:00
|
|
|
nr = pr / tdv;
|
2015-07-08 02:48:08 +08:00
|
|
|
diff = req->rate - nr;
|
|
|
|
if (nr > req->rate)
|
2014-07-23 22:36:48 +08:00
|
|
|
continue;
|
|
|
|
if (diff < lastdiff) {
|
|
|
|
lastdiff = diff;
|
|
|
|
bpr = pr;
|
|
|
|
bpc = free;
|
|
|
|
br = nr;
|
|
|
|
}
|
|
|
|
if (diff == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-10 04:39:38 +08:00
|
|
|
if (br < 0)
|
|
|
|
return br;
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
req->best_parent_rate = bpr;
|
2015-07-31 08:20:57 +08:00
|
|
|
req->best_parent_hw = bpc;
|
2015-07-08 02:48:08 +08:00
|
|
|
req->rate = br;
|
2015-07-10 04:39:38 +08:00
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
return 0;
|
2014-07-23 22:36:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv1_en(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v |= (1 << 1) << c->shift;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv1_isen(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v = alchemy_rdsys(c->reg) >> (c->shift + 1);
|
|
|
|
|
|
|
|
return v & 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void alchemy_clk_fgv1_dis(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~((1 << 1) << c->shift);
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv1_setp(struct clk_hw *hw, u8 index)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
if (index)
|
|
|
|
v |= (1 << c->shift);
|
|
|
|
else
|
|
|
|
v &= ~(1 << c->shift);
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u8 alchemy_clk_fgv1_getp(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
|
|
|
|
return (alchemy_rdsys(c->reg) >> c->shift) & 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv1_setr(struct clk_hw *hw, unsigned long rate,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long div, v, flags, ret;
|
|
|
|
int sh = c->shift + 2;
|
|
|
|
|
|
|
|
if (!rate || !parent_rate || rate > (parent_rate / 2))
|
|
|
|
return -EINVAL;
|
|
|
|
ret = alchemy_calc_div(rate, parent_rate, 2, 512, &div);
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~(0xff << sh);
|
|
|
|
v |= div << sh;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long alchemy_clk_fgv1_recalc(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v = alchemy_rdsys(c->reg) >> (c->shift + 2);
|
|
|
|
|
|
|
|
v = ((v & 0xff) + 1) * 2;
|
|
|
|
return parent_rate / v;
|
|
|
|
}
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
static int alchemy_clk_fgv1_detr(struct clk_hw *hw,
|
|
|
|
struct clk_rate_request *req)
|
2014-07-23 22:36:48 +08:00
|
|
|
{
|
2015-07-08 02:48:08 +08:00
|
|
|
return alchemy_clk_fgcs_detr(hw, req, 2, 512);
|
2014-07-23 22:36:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Au1000, Au1100, Au15x0, Au12x0 */
|
2017-09-26 21:51:05 +08:00
|
|
|
static const struct clk_ops alchemy_clkops_fgenv1 = {
|
2014-07-23 22:36:48 +08:00
|
|
|
.recalc_rate = alchemy_clk_fgv1_recalc,
|
|
|
|
.determine_rate = alchemy_clk_fgv1_detr,
|
|
|
|
.set_rate = alchemy_clk_fgv1_setr,
|
|
|
|
.set_parent = alchemy_clk_fgv1_setp,
|
|
|
|
.get_parent = alchemy_clk_fgv1_getp,
|
|
|
|
.enable = alchemy_clk_fgv1_en,
|
|
|
|
.disable = alchemy_clk_fgv1_dis,
|
|
|
|
.is_enabled = alchemy_clk_fgv1_isen,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void __alchemy_clk_fgv2_en(struct alchemy_fgcs_clk *c)
|
|
|
|
{
|
|
|
|
unsigned long v = alchemy_rdsys(c->reg);
|
|
|
|
|
|
|
|
v &= ~(3 << c->shift);
|
|
|
|
v |= (c->parent & 3) << c->shift;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
c->isen = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv2_en(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/* enable by setting the previous parent clock */
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
__alchemy_clk_fgv2_en(c);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv2_isen(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
|
|
|
|
return ((alchemy_rdsys(c->reg) >> c->shift) & 3) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void alchemy_clk_fgv2_dis(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~(3 << c->shift); /* set input mux to "disabled" state */
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
c->isen = 0;
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_fgv2_setp(struct clk_hw *hw, u8 index)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
c->parent = index + 1; /* value to write to register */
|
|
|
|
if (c->isen)
|
|
|
|
__alchemy_clk_fgv2_en(c);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u8 alchemy_clk_fgv2_getp(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long flags, v;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = c->parent - 1;
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fg0-2 and fg4-6 share a "scale"-bit. With this bit cleared, the
|
|
|
|
* dividers behave exactly as on previous models (dividers are multiples
|
|
|
|
* of 2); with the bit set, dividers are multiples of 1, halving their
|
|
|
|
* range, but making them also much more flexible.
|
|
|
|
*/
|
|
|
|
static int alchemy_clk_fgv2_setr(struct clk_hw *hw, unsigned long rate,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
int sh = c->shift + 2;
|
|
|
|
unsigned long div, v, flags, ret;
|
|
|
|
|
|
|
|
if (!rate || !parent_rate || rate > parent_rate)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
v = alchemy_rdsys(c->reg) & (1 << 30); /* test "scale" bit */
|
|
|
|
ret = alchemy_calc_div(rate, parent_rate, v ? 1 : 2,
|
|
|
|
v ? 256 : 512, &div);
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~(0xff << sh);
|
|
|
|
v |= (div & 0xff) << sh;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long alchemy_clk_fgv2_recalc(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
int sh = c->shift + 2;
|
|
|
|
unsigned long v, t;
|
|
|
|
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
t = parent_rate / (((v >> sh) & 0xff) + 1);
|
|
|
|
if ((v & (1 << 30)) == 0) /* test scale bit */
|
|
|
|
t /= 2;
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
static int alchemy_clk_fgv2_detr(struct clk_hw *hw,
|
|
|
|
struct clk_rate_request *req)
|
2014-07-23 22:36:48 +08:00
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
int scale, maxdiv;
|
|
|
|
|
|
|
|
if (alchemy_rdsys(c->reg) & (1 << 30)) {
|
|
|
|
scale = 1;
|
|
|
|
maxdiv = 256;
|
|
|
|
} else {
|
|
|
|
scale = 2;
|
|
|
|
maxdiv = 512;
|
|
|
|
}
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
return alchemy_clk_fgcs_detr(hw, req, scale, maxdiv);
|
2014-07-23 22:36:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Au1300 larger input mux, no separate disable bit, flexible divider */
|
2017-09-26 21:51:05 +08:00
|
|
|
static const struct clk_ops alchemy_clkops_fgenv2 = {
|
2014-07-23 22:36:48 +08:00
|
|
|
.recalc_rate = alchemy_clk_fgv2_recalc,
|
|
|
|
.determine_rate = alchemy_clk_fgv2_detr,
|
|
|
|
.set_rate = alchemy_clk_fgv2_setr,
|
|
|
|
.set_parent = alchemy_clk_fgv2_setp,
|
|
|
|
.get_parent = alchemy_clk_fgv2_getp,
|
|
|
|
.enable = alchemy_clk_fgv2_en,
|
|
|
|
.disable = alchemy_clk_fgv2_dis,
|
|
|
|
.is_enabled = alchemy_clk_fgv2_isen,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_clk_fgv1_parents[] = {
|
|
|
|
ALCHEMY_CPU_CLK, ALCHEMY_AUXPLL_CLK
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_clk_fgv2_parents[] = {
|
|
|
|
ALCHEMY_AUXPLL2_CLK, ALCHEMY_CPU_CLK, ALCHEMY_AUXPLL_CLK
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_clk_fgen_names[] = {
|
|
|
|
ALCHEMY_FG0_CLK, ALCHEMY_FG1_CLK, ALCHEMY_FG2_CLK,
|
|
|
|
ALCHEMY_FG3_CLK, ALCHEMY_FG4_CLK, ALCHEMY_FG5_CLK };
|
|
|
|
|
|
|
|
static int __init alchemy_clk_init_fgens(int ctype)
|
|
|
|
{
|
|
|
|
struct clk *c;
|
|
|
|
struct clk_init_data id;
|
|
|
|
struct alchemy_fgcs_clk *a;
|
|
|
|
unsigned long v;
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
switch (ctype) {
|
|
|
|
case ALCHEMY_CPU_AU1000...ALCHEMY_CPU_AU1200:
|
|
|
|
id.ops = &alchemy_clkops_fgenv1;
|
2015-04-28 12:46:23 +08:00
|
|
|
id.parent_names = alchemy_clk_fgv1_parents;
|
2014-07-23 22:36:48 +08:00
|
|
|
id.num_parents = 2;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1300:
|
|
|
|
id.ops = &alchemy_clkops_fgenv2;
|
2015-04-28 12:46:23 +08:00
|
|
|
id.parent_names = alchemy_clk_fgv2_parents;
|
2014-07-23 22:36:48 +08:00
|
|
|
id.num_parents = 3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2014-07-23 22:36:57 +08:00
|
|
|
id.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE;
|
2014-07-23 22:36:48 +08:00
|
|
|
|
|
|
|
a = kzalloc((sizeof(*a)) * 6, GFP_KERNEL);
|
|
|
|
if (!a)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
spin_lock_init(&alchemy_clk_fg0_lock);
|
|
|
|
spin_lock_init(&alchemy_clk_fg1_lock);
|
|
|
|
ret = 0;
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
id.name = alchemy_clk_fgen_names[i];
|
|
|
|
a->shift = 10 * (i < 3 ? i : i - 3);
|
|
|
|
if (i > 2) {
|
|
|
|
a->reg = AU1000_SYS_FREQCTRL1;
|
|
|
|
a->reglock = &alchemy_clk_fg1_lock;
|
|
|
|
} else {
|
|
|
|
a->reg = AU1000_SYS_FREQCTRL0;
|
|
|
|
a->reglock = &alchemy_clk_fg0_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* default to first parent if bootloader has set
|
|
|
|
* the mux to disabled state.
|
|
|
|
*/
|
|
|
|
if (ctype == ALCHEMY_CPU_AU1300) {
|
|
|
|
v = alchemy_rdsys(a->reg);
|
|
|
|
a->parent = (v >> a->shift) & 3;
|
|
|
|
if (!a->parent) {
|
|
|
|
a->parent = 1;
|
|
|
|
a->isen = 0;
|
|
|
|
} else
|
|
|
|
a->isen = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
a->hw.init = &id;
|
|
|
|
c = clk_register(NULL, &a->hw);
|
|
|
|
if (IS_ERR(c))
|
|
|
|
ret++;
|
|
|
|
else
|
|
|
|
clk_register_clkdev(c, id.name, NULL);
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* internal sources muxes *********************************************/
|
|
|
|
|
|
|
|
static int alchemy_clk_csrc_isen(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v = alchemy_rdsys(c->reg);
|
|
|
|
|
|
|
|
return (((v >> c->shift) >> 2) & 7) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __alchemy_clk_csrc_en(struct alchemy_fgcs_clk *c)
|
|
|
|
{
|
|
|
|
unsigned long v = alchemy_rdsys(c->reg);
|
|
|
|
|
|
|
|
v &= ~((7 << 2) << c->shift);
|
|
|
|
v |= ((c->parent & 7) << 2) << c->shift;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
c->isen = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_csrc_en(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/* enable by setting the previous parent clock */
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
__alchemy_clk_csrc_en(c);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void alchemy_clk_csrc_dis(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v, flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~((3 << 2) << c->shift); /* mux to "disabled" state */
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
c->isen = 0;
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_csrc_setp(struct clk_hw *hw, u8 index)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
c->parent = index + 1; /* value to write to register */
|
|
|
|
if (c->isen)
|
|
|
|
__alchemy_clk_csrc_en(c);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u8 alchemy_clk_csrc_getp(struct clk_hw *hw)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
|
|
|
|
return c->parent - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long alchemy_clk_csrc_recalc(struct clk_hw *hw,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long v = (alchemy_rdsys(c->reg) >> c->shift) & 3;
|
|
|
|
|
|
|
|
return parent_rate / c->dt[v];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alchemy_clk_csrc_setr(struct clk_hw *hw, unsigned long rate,
|
|
|
|
unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
unsigned long d, v, flags;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!rate || !parent_rate || rate > parent_rate)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
d = (parent_rate + (rate / 2)) / rate;
|
|
|
|
if (d > 4)
|
|
|
|
return -EINVAL;
|
|
|
|
if ((d == 3) && (c->dt[2] != 3))
|
|
|
|
d = 4;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
if (c->dt[i] == d)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i >= 4)
|
|
|
|
return -EINVAL; /* oops */
|
|
|
|
|
|
|
|
spin_lock_irqsave(c->reglock, flags);
|
|
|
|
v = alchemy_rdsys(c->reg);
|
|
|
|
v &= ~(3 << c->shift);
|
|
|
|
v |= (i & 3) << c->shift;
|
|
|
|
alchemy_wrsys(v, c->reg);
|
|
|
|
spin_unlock_irqrestore(c->reglock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
static int alchemy_clk_csrc_detr(struct clk_hw *hw,
|
|
|
|
struct clk_rate_request *req)
|
2014-07-23 22:36:48 +08:00
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *c = to_fgcs_clk(hw);
|
|
|
|
int scale = c->dt[2] == 3 ? 1 : 2; /* au1300 check */
|
|
|
|
|
2015-07-08 02:48:08 +08:00
|
|
|
return alchemy_clk_fgcs_detr(hw, req, scale, 4);
|
2014-07-23 22:36:48 +08:00
|
|
|
}
|
|
|
|
|
2017-09-26 21:51:05 +08:00
|
|
|
static const struct clk_ops alchemy_clkops_csrc = {
|
2014-07-23 22:36:48 +08:00
|
|
|
.recalc_rate = alchemy_clk_csrc_recalc,
|
|
|
|
.determine_rate = alchemy_clk_csrc_detr,
|
|
|
|
.set_rate = alchemy_clk_csrc_setr,
|
|
|
|
.set_parent = alchemy_clk_csrc_setp,
|
|
|
|
.get_parent = alchemy_clk_csrc_getp,
|
|
|
|
.enable = alchemy_clk_csrc_en,
|
|
|
|
.disable = alchemy_clk_csrc_dis,
|
|
|
|
.is_enabled = alchemy_clk_csrc_isen,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const alchemy_clk_csrc_parents[] = {
|
|
|
|
/* disabled at index 0 */ ALCHEMY_AUXPLL_CLK,
|
|
|
|
ALCHEMY_FG0_CLK, ALCHEMY_FG1_CLK, ALCHEMY_FG2_CLK,
|
|
|
|
ALCHEMY_FG3_CLK, ALCHEMY_FG4_CLK, ALCHEMY_FG5_CLK
|
|
|
|
};
|
|
|
|
|
|
|
|
/* divider tables */
|
|
|
|
static int alchemy_csrc_dt1[] = { 1, 4, 1, 2 }; /* rest */
|
|
|
|
static int alchemy_csrc_dt2[] = { 1, 4, 3, 2 }; /* Au1300 */
|
|
|
|
|
|
|
|
static int __init alchemy_clk_setup_imux(int ctype)
|
|
|
|
{
|
|
|
|
struct alchemy_fgcs_clk *a;
|
|
|
|
const char * const *names;
|
|
|
|
struct clk_init_data id;
|
|
|
|
unsigned long v;
|
|
|
|
int i, ret, *dt;
|
|
|
|
struct clk *c;
|
|
|
|
|
|
|
|
id.ops = &alchemy_clkops_csrc;
|
2015-04-28 12:46:23 +08:00
|
|
|
id.parent_names = alchemy_clk_csrc_parents;
|
2014-07-23 22:36:48 +08:00
|
|
|
id.num_parents = 7;
|
2014-07-23 22:36:57 +08:00
|
|
|
id.flags = CLK_SET_RATE_PARENT | CLK_GET_RATE_NOCACHE;
|
2014-07-23 22:36:48 +08:00
|
|
|
|
|
|
|
dt = alchemy_csrc_dt1;
|
|
|
|
switch (ctype) {
|
|
|
|
case ALCHEMY_CPU_AU1000:
|
|
|
|
names = alchemy_au1000_intclknames;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1500:
|
|
|
|
names = alchemy_au1500_intclknames;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1100:
|
|
|
|
names = alchemy_au1100_intclknames;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1550:
|
|
|
|
names = alchemy_au1550_intclknames;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1200:
|
|
|
|
names = alchemy_au1200_intclknames;
|
|
|
|
break;
|
|
|
|
case ALCHEMY_CPU_AU1300:
|
|
|
|
dt = alchemy_csrc_dt2;
|
|
|
|
names = alchemy_au1300_intclknames;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
a = kzalloc((sizeof(*a)) * 6, GFP_KERNEL);
|
|
|
|
if (!a)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
spin_lock_init(&alchemy_clk_csrc_lock);
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
id.name = names[i];
|
|
|
|
if (!id.name)
|
|
|
|
goto next;
|
|
|
|
|
|
|
|
a->shift = i * 5;
|
|
|
|
a->reg = AU1000_SYS_CLKSRC;
|
|
|
|
a->reglock = &alchemy_clk_csrc_lock;
|
|
|
|
a->dt = dt;
|
|
|
|
|
|
|
|
/* default to first parent clock if mux is initially
|
|
|
|
* set to disabled state.
|
|
|
|
*/
|
|
|
|
v = alchemy_rdsys(a->reg);
|
|
|
|
a->parent = ((v >> a->shift) >> 2) & 7;
|
|
|
|
if (!a->parent) {
|
|
|
|
a->parent = 1;
|
|
|
|
a->isen = 0;
|
|
|
|
} else
|
|
|
|
a->isen = 1;
|
|
|
|
|
|
|
|
a->hw.init = &id;
|
|
|
|
c = clk_register(NULL, &a->hw);
|
|
|
|
if (IS_ERR(c))
|
|
|
|
ret++;
|
|
|
|
else
|
|
|
|
clk_register_clkdev(c, id.name, NULL);
|
|
|
|
next:
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#define ERRCK(x) \
|
|
|
|
if (IS_ERR(x)) { \
|
|
|
|
ret = PTR_ERR(x); \
|
|
|
|
goto out; \
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __init alchemy_clk_init(void)
|
|
|
|
{
|
|
|
|
int ctype = alchemy_get_cputype(), ret, i;
|
|
|
|
struct clk_aliastable *t = alchemy_clk_aliases;
|
|
|
|
struct clk *c;
|
|
|
|
|
|
|
|
/* Root of the Alchemy clock tree: external 12MHz crystal osc */
|
|
|
|
c = clk_register_fixed_rate(NULL, ALCHEMY_ROOT_CLK, NULL,
|
2016-04-20 09:34:37 +08:00
|
|
|
0, ALCHEMY_ROOTCLK_RATE);
|
2014-07-23 22:36:48 +08:00
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* CPU core clock */
|
|
|
|
c = alchemy_clk_setup_cpu(ALCHEMY_ROOT_CLK, ctype);
|
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* AUXPLLs: max 1GHz on Au1300, 748MHz on older models */
|
|
|
|
i = (ctype == ALCHEMY_CPU_AU1300) ? 84 : 63;
|
|
|
|
c = alchemy_clk_setup_aux(ALCHEMY_ROOT_CLK, ALCHEMY_AUXPLL_CLK,
|
|
|
|
i, AU1000_SYS_AUXPLL);
|
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
if (ctype == ALCHEMY_CPU_AU1300) {
|
|
|
|
c = alchemy_clk_setup_aux(ALCHEMY_ROOT_CLK,
|
|
|
|
ALCHEMY_AUXPLL2_CLK, i,
|
|
|
|
AU1300_SYS_AUXPLL2);
|
|
|
|
ERRCK(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sysbus clock: cpu core clock divided by 2, 3 or 4 */
|
|
|
|
c = alchemy_clk_setup_sysbus(ALCHEMY_CPU_CLK);
|
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* peripheral clock: runs at half rate of sysbus clk */
|
|
|
|
c = alchemy_clk_setup_periph(ALCHEMY_SYSBUS_CLK);
|
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* SDR/DDR memory clock */
|
|
|
|
c = alchemy_clk_setup_mem(ALCHEMY_SYSBUS_CLK, ctype);
|
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* L/RCLK: external static bus clock for synchronous mode */
|
2015-01-29 23:06:42 +08:00
|
|
|
c = alchemy_clk_setup_lrclk(ALCHEMY_PERIPH_CLK, ctype);
|
2014-07-23 22:36:48 +08:00
|
|
|
ERRCK(c)
|
|
|
|
|
|
|
|
/* Frequency dividers 0-5 */
|
|
|
|
ret = alchemy_clk_init_fgens(ctype);
|
|
|
|
if (ret) {
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* diving muxes for internal sources */
|
|
|
|
ret = alchemy_clk_setup_imux(ctype);
|
|
|
|
if (ret) {
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set up aliases drivers might look for */
|
|
|
|
while (t->base) {
|
|
|
|
if (t->cputype == ctype)
|
|
|
|
clk_add_alias(t->alias, NULL, t->base, NULL);
|
|
|
|
t++;
|
|
|
|
}
|
|
|
|
|
|
|
|
pr_info("Alchemy clocktree installed\n");
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
postcore_initcall(alchemy_clk_init);
|