xref: /kernel/linux/linux-6.6/drivers/clk/socfpga/clk.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-6.6/drivers/clk/socfpga/
162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci *  Copyright 2011-2012 Calxeda, Inc.
462306a36Sopenharmony_ci *  Copyright (C) 2012-2013 Altera Corporation <www.altera.com>
562306a36Sopenharmony_ci *
662306a36Sopenharmony_ci * Based from clk-highbank.c
762306a36Sopenharmony_ci */
862306a36Sopenharmony_ci#include <linux/of.h>
962306a36Sopenharmony_ci
1062306a36Sopenharmony_ci#include "clk.h"
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_pll_clk, "altr,socfpga-pll-clock", socfpga_pll_init);
1362306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_perip_clk, "altr,socfpga-perip-clk", socfpga_periph_init);
1462306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_gate_clk, "altr,socfpga-gate-clk", socfpga_gate_init);
1562306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_a10_pll_clk, "altr,socfpga-a10-pll-clock",
1662306a36Sopenharmony_ci	       socfpga_a10_pll_init);
1762306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_a10_perip_clk, "altr,socfpga-a10-perip-clk",
1862306a36Sopenharmony_ci	       socfpga_a10_periph_init);
1962306a36Sopenharmony_ciCLK_OF_DECLARE(socfpga_a10_gate_clk, "altr,socfpga-a10-gate-clk",
2062306a36Sopenharmony_ci	       socfpga_a10_gate_init);
21

Indexes created Thu Nov 07 10:32:03 CST 2024