forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'acpi-5.9-rc1-2' of git://git.kernel.org/pub/scm/linux/kern…
…el/git/rafael/linux-pm Pull more ACPI updates from Rafael Wysocki: "Add new hardware support to the ACPI driver for AMD SoCs, the x86 clk driver and the Designware i2c driver (changes from Akshu Agrawal and Pu Wen)" * tag 'acpi-5.9-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: clk: x86: Support RV architecture ACPI: APD: Add a fmw property is_raven clk: x86: Change name from ST to FCH ACPI: APD: Change name from ST to FCH i2c: designware: Add device HID for Hygon I2C controller
- Loading branch information
Showing
6 changed files
with
121 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
obj-$(CONFIG_PMC_ATOM) += clk-pmc-atom.o | ||
obj-$(CONFIG_X86_AMD_PLATFORM_DEVICE) += clk-st.o | ||
obj-$(CONFIG_X86_AMD_PLATFORM_DEVICE) += clk-fch.o | ||
clk-x86-lpss-objs := clk-lpt.o | ||
obj-$(CONFIG_X86_INTEL_LPSS) += clk-x86-lpss.o | ||
obj-$(CONFIG_CLK_LGM_CGU) += clk-cgu.o clk-cgu-pll.o clk-lgm.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// SPDX-License-Identifier: MIT | ||
/* | ||
* clock framework for AMD Stoney based clocks | ||
* | ||
* Copyright 2018 Advanced Micro Devices, Inc. | ||
*/ | ||
|
||
#include <linux/clk.h> | ||
#include <linux/clkdev.h> | ||
#include <linux/clk-provider.h> | ||
#include <linux/platform_data/clk-fch.h> | ||
#include <linux/platform_device.h> | ||
|
||
/* Clock Driving Strength 2 register */ | ||
#define CLKDRVSTR2 0x28 | ||
/* Clock Control 1 register */ | ||
#define MISCCLKCNTL1 0x40 | ||
/* Auxiliary clock1 enable bit */ | ||
#define OSCCLKENB 2 | ||
/* 25Mhz auxiliary output clock freq bit */ | ||
#define OSCOUT1CLK25MHZ 16 | ||
|
||
#define ST_CLK_48M 0 | ||
#define ST_CLK_25M 1 | ||
#define ST_CLK_MUX 2 | ||
#define ST_CLK_GATE 3 | ||
#define ST_MAX_CLKS 4 | ||
|
||
#define RV_CLK_48M 0 | ||
#define RV_CLK_GATE 1 | ||
#define RV_MAX_CLKS 2 | ||
|
||
static const char * const clk_oscout1_parents[] = { "clk48MHz", "clk25MHz" }; | ||
static struct clk_hw *hws[ST_MAX_CLKS]; | ||
|
||
static int fch_clk_probe(struct platform_device *pdev) | ||
{ | ||
struct fch_clk_data *fch_data; | ||
|
||
fch_data = dev_get_platdata(&pdev->dev); | ||
if (!fch_data || !fch_data->base) | ||
return -EINVAL; | ||
|
||
if (!fch_data->is_rv) { | ||
hws[ST_CLK_48M] = clk_hw_register_fixed_rate(NULL, "clk48MHz", | ||
NULL, 0, 48000000); | ||
hws[ST_CLK_25M] = clk_hw_register_fixed_rate(NULL, "clk25MHz", | ||
NULL, 0, 25000000); | ||
|
||
hws[ST_CLK_MUX] = clk_hw_register_mux(NULL, "oscout1_mux", | ||
clk_oscout1_parents, ARRAY_SIZE(clk_oscout1_parents), | ||
0, fch_data->base + CLKDRVSTR2, OSCOUT1CLK25MHZ, 3, 0, | ||
NULL); | ||
|
||
clk_set_parent(hws[ST_CLK_MUX]->clk, hws[ST_CLK_48M]->clk); | ||
|
||
hws[ST_CLK_GATE] = clk_hw_register_gate(NULL, "oscout1", | ||
"oscout1_mux", 0, fch_data->base + MISCCLKCNTL1, | ||
OSCCLKENB, CLK_GATE_SET_TO_DISABLE, NULL); | ||
|
||
devm_clk_hw_register_clkdev(&pdev->dev, hws[ST_CLK_GATE], | ||
"oscout1", NULL); | ||
} else { | ||
hws[RV_CLK_48M] = clk_hw_register_fixed_rate(NULL, "clk48MHz", | ||
NULL, 0, 48000000); | ||
|
||
hws[RV_CLK_GATE] = clk_hw_register_gate(NULL, "oscout1", | ||
"clk48MHz", 0, fch_data->base + MISCCLKCNTL1, | ||
OSCCLKENB, CLK_GATE_SET_TO_DISABLE, NULL); | ||
|
||
devm_clk_hw_register_clkdev(&pdev->dev, hws[RV_CLK_GATE], | ||
"oscout1", NULL); | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
static int fch_clk_remove(struct platform_device *pdev) | ||
{ | ||
int i, clks; | ||
struct fch_clk_data *fch_data; | ||
|
||
fch_data = dev_get_platdata(&pdev->dev); | ||
|
||
clks = fch_data->is_rv ? RV_MAX_CLKS : ST_MAX_CLKS; | ||
|
||
for (i = 0; i < clks; i++) | ||
clk_hw_unregister(hws[i]); | ||
|
||
return 0; | ||
} | ||
|
||
static struct platform_driver fch_clk_driver = { | ||
.driver = { | ||
.name = "clk-fch", | ||
.suppress_bind_attrs = true, | ||
}, | ||
.probe = fch_clk_probe, | ||
.remove = fch_clk_remove, | ||
}; | ||
builtin_platform_driver(fch_clk_driver); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
include/linux/platform_data/clk-st.h → include/linux/platform_data/clk-fch.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
/* SPDX-License-Identifier: MIT */ | ||
/* | ||
* clock framework for AMD Stoney based clock | ||
* clock framework for AMD misc clocks | ||
* | ||
* Copyright 2018 Advanced Micro Devices, Inc. | ||
*/ | ||
|
||
#ifndef __CLK_ST_H | ||
#define __CLK_ST_H | ||
#ifndef __CLK_FCH_H | ||
#define __CLK_FCH_H | ||
|
||
#include <linux/compiler.h> | ||
|
||
struct st_clk_data { | ||
struct fch_clk_data { | ||
void __iomem *base; | ||
u32 is_rv; | ||
}; | ||
|
||
#endif /* __CLK_ST_H */ | ||
#endif /* __CLK_FCH_H */ |