Searched +full:cgu +full:- +full:lgm (Results 1 – 4 of 4) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---4 $id: http://devicetree.org/schemas/clock/intel,cgu-lgm.yaml#5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: Intel Lightning Mountain SoC's Clock Controller(CGU)10 - Rahul Tanwar <rahul.tanwar@linux.intel.com>13 Lightning Mountain(LGM) SoC's Clock Generation Unit(CGU) driver provides14 all means to access the CGU hardware module in order to generate a series17 Please refer to include/dt-bindings/clock/intel,lgm-clk.h header file, it23 const: intel,cgu-lgm[all …]
1 # SPDX-License-Identifier: GPL-2.0-only6 bool "Clock driver for Lightning Mountain(LGM) platform"8 Clock Generation Unit(CGU) driver for MaxLinear's x86 based9 Lightning Mountain(LGM) network processor SoC.
1 # SPDX-License-Identifier: GPL-2.0-only2 obj-$(CONFIG_X86_AMD_PLATFORM_DEVICE) += clk-fch.o3 obj-$(CONFIG_X86_INTEL_LPSS) += clk-lpss-atom.o clk-pmc-atom.o4 obj-$(CONFIG_CLK_LGM_CGU) += clk-cgu.o clk-cgu-pll.o clk-lgm.o
1 // SPDX-License-Identifier: GPL-2.03 * Copyright (C) 2020-2022 MaxLinear, Inc.8 #include <linux/clk-provider.h>12 #include <dt-bindings/clock/intel,lgm-clk.h>13 #include "clk-cgu.h"121 * It's more efficient to provide an explicit table due to non-linear427 struct device *dev = &pdev->dev; in lgm_cgu_probe()428 struct device_node *np = dev->of_node; in lgm_cgu_probe()434 return -ENOMEM; in lgm_cgu_probe()436 ctx->clk_data.num = CLK_NR_CLKS; in lgm_cgu_probe()[all …]