Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  clk-imx27.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0
#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/clkdev.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <dt-bindings/clock/imx27-clock.h>
#include <soc/imx/revision.h>
#include <asm/irq.h>

#include "clk.h"

#define MX27_CCM_BASE_ADDR 0x10027000
#define MX27_GPT1_BASE_ADDR 0x10003000
#define MX27_INT_GPT1  (NR_IRQS_LEGACY + 26)

static void __iomem *ccm __initdata;

/* Register offsets */
#define CCM_CSCR  (ccm + 0x00)
#define CCM_MPCTL0  (ccm + 0x04)
#define CCM_MPCTL1  (ccm + 0x08)
#define CCM_SPCTL0  (ccm + 0x0c)
#define CCM_SPCTL1  (ccm + 0x10)
#define CCM_PCDR0  (ccm + 0x18)
#define CCM_PCDR1  (ccm + 0x1c)
#define CCM_PCCR0  (ccm + 0x20)
#define CCM_PCCR1  (ccm + 0x24)
#define CCM_CCSR  (ccm + 0x28)

static const char *vpu_sel_clks[] = { "spll""mpll_main2", };
static const char *cpu_sel_clks[] = { "mpll_main2""mpll", };
static const char *mpll_sel_clks[] = { "fpm""mpll_osc_sel", };
static const char *mpll_osc_sel_clks[] = { "ckih_gate""ckih_div1p5", };
static const char *clko_sel_clks[] = {
 "ckil""fpm""ckih_gate""ckih_gate",
 "ckih_gate""mpll""spll""cpu_div",
 "ahb""ipg""per1_div""per2_div",
 "per3_div""per4_div""ssi1_div""ssi2_div",
 "nfc_div""mshc_div""vpu_div""60m",
 "32k""usb_div""dptc",
};

static const char *ssi_sel_clks[] = { "spll_gate""mpll", };

static struct clk *clk[IMX27_CLK_MAX];
static struct clk_onecell_data clk_data;

static void __init _mx27_clocks_init(unsigned long fref)
{
 BUG_ON(!ccm);

 clk[IMX27_CLK_DUMMY] = imx_clk_fixed("dummy"0);
 clk[IMX27_CLK_CKIH] = imx_clk_fixed("ckih", fref);
 clk[IMX27_CLK_CKIL] = imx_clk_fixed("ckil"32768);
 clk[IMX27_CLK_FPM] = imx_clk_fixed_factor("fpm""ckil"10241);
 clk[IMX27_CLK_CKIH_DIV1P5] = imx_clk_fixed_factor("ckih_div1p5""ckih_gate"23);
 clk[IMX27_CLK_CKIH_GATE] = imx_clk_gate_dis("ckih_gate""ckih", CCM_CSCR, 3);
 clk[IMX27_CLK_MPLL_OSC_SEL] = imx_clk_mux("mpll_osc_sel", CCM_CSCR, 41, mpll_osc_sel_clks, ARRAY_SIZE(mpll_osc_sel_clks));
 clk[IMX27_CLK_MPLL_SEL] = imx_clk_mux("mpll_sel", CCM_CSCR, 161, mpll_sel_clks, ARRAY_SIZE(mpll_sel_clks));
 clk[IMX27_CLK_MPLL] = imx_clk_pllv1(IMX_PLLV1_IMX27, "mpll""mpll_sel", CCM_MPCTL0);
 clk[IMX27_CLK_SPLL] = imx_clk_pllv1(IMX_PLLV1_IMX27, "spll""ckih_gate", CCM_SPCTL0);
 clk[IMX27_CLK_SPLL_GATE] = imx_clk_gate("spll_gate""spll", CCM_CSCR, 1);
 clk[IMX27_CLK_MPLL_MAIN2] = imx_clk_fixed_factor("mpll_main2""mpll"23);

 if (mx27_revision() >= IMX_CHIP_REVISION_2_0) {
  clk[IMX27_CLK_AHB] = imx_clk_divider("ahb""mpll_main2", CCM_CSCR, 82);
  clk[IMX27_CLK_IPG] = imx_clk_fixed_factor("ipg""ahb"12);
 } else {
  clk[IMX27_CLK_AHB] = imx_clk_divider("ahb""mpll_main2", CCM_CSCR, 94);
  clk[IMX27_CLK_IPG] = imx_clk_divider("ipg""ahb", CCM_CSCR, 81);
 }

 clk[IMX27_CLK_MSHC_DIV] = imx_clk_divider("mshc_div""ahb", CCM_PCDR0, 06);
 clk[IMX27_CLK_NFC_DIV] = imx_clk_divider("nfc_div""ahb", CCM_PCDR0, 64);
 clk[IMX27_CLK_PER1_DIV] = imx_clk_divider("per1_div""mpll_main2", CCM_PCDR1, 06);
 clk[IMX27_CLK_PER2_DIV] = imx_clk_divider("per2_div""mpll_main2", CCM_PCDR1, 86);
 clk[IMX27_CLK_PER3_DIV] = imx_clk_divider("per3_div""mpll_main2", CCM_PCDR1, 166);
 clk[IMX27_CLK_PER4_DIV] = imx_clk_divider("per4_div""mpll_main2", CCM_PCDR1, 246);
 clk[IMX27_CLK_VPU_SEL] = imx_clk_mux("vpu_sel", CCM_CSCR, 211, vpu_sel_clks, ARRAY_SIZE(vpu_sel_clks));
 clk[IMX27_CLK_VPU_DIV] = imx_clk_divider("vpu_div""vpu_sel", CCM_PCDR0, 106);
 clk[IMX27_CLK_USB_DIV] = imx_clk_divider("usb_div""spll_gate", CCM_CSCR, 283);
 clk[IMX27_CLK_CPU_SEL] = imx_clk_mux("cpu_sel", CCM_CSCR, 151, cpu_sel_clks, ARRAY_SIZE(cpu_sel_clks));
 clk[IMX27_CLK_CLKO_SEL] = imx_clk_mux("clko_sel", CCM_CCSR, 05, clko_sel_clks, ARRAY_SIZE(clko_sel_clks));

 if (mx27_revision() >= IMX_CHIP_REVISION_2_0)
  clk[IMX27_CLK_CPU_DIV] = imx_clk_divider("cpu_div""cpu_sel", CCM_CSCR, 122);
 else
  clk[IMX27_CLK_CPU_DIV] = imx_clk_divider("cpu_div""cpu_sel", CCM_CSCR, 133);

 clk[IMX27_CLK_CLKO_DIV] = imx_clk_divider("clko_div""clko_sel", CCM_PCDR0, 223);
 clk[IMX27_CLK_SSI1_SEL] = imx_clk_mux("ssi1_sel", CCM_CSCR, 221, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
 clk[IMX27_CLK_SSI2_SEL] = imx_clk_mux("ssi2_sel", CCM_CSCR, 231, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
 clk[IMX27_CLK_SSI1_DIV] = imx_clk_divider("ssi1_div""ssi1_sel", CCM_PCDR0, 166);
 clk[IMX27_CLK_SSI2_DIV] = imx_clk_divider("ssi2_div""ssi2_sel", CCM_PCDR0, 266);
 clk[IMX27_CLK_CLKO_EN] = imx_clk_gate("clko_en""clko_div", CCM_PCCR0, 0);
 clk[IMX27_CLK_SSI2_IPG_GATE] = imx_clk_gate("ssi2_ipg_gate""ipg", CCM_PCCR0, 0);
 clk[IMX27_CLK_SSI1_IPG_GATE] = imx_clk_gate("ssi1_ipg_gate""ipg", CCM_PCCR0, 1);
 clk[IMX27_CLK_SLCDC_IPG_GATE] = imx_clk_gate("slcdc_ipg_gate""ipg", CCM_PCCR0, 2);
 clk[IMX27_CLK_SDHC3_IPG_GATE] = imx_clk_gate("sdhc3_ipg_gate""ipg", CCM_PCCR0, 3);
 clk[IMX27_CLK_SDHC2_IPG_GATE] = imx_clk_gate("sdhc2_ipg_gate""ipg", CCM_PCCR0, 4);
 clk[IMX27_CLK_SDHC1_IPG_GATE] = imx_clk_gate("sdhc1_ipg_gate""ipg", CCM_PCCR0, 5);
 clk[IMX27_CLK_SCC_IPG_GATE] = imx_clk_gate("scc_ipg_gate""ipg", CCM_PCCR0, 6);
 clk[IMX27_CLK_SAHARA_IPG_GATE] = imx_clk_gate("sahara_ipg_gate""ipg", CCM_PCCR0, 7);
 clk[IMX27_CLK_RTIC_IPG_GATE] = imx_clk_gate("rtic_ipg_gate""ipg", CCM_PCCR0, 8);
 clk[IMX27_CLK_RTC_IPG_GATE] = imx_clk_gate("rtc_ipg_gate""ipg", CCM_PCCR0, 9);
 clk[IMX27_CLK_PWM_IPG_GATE] = imx_clk_gate("pwm_ipg_gate""ipg", CCM_PCCR0, 11);
 clk[IMX27_CLK_OWIRE_IPG_GATE] = imx_clk_gate("owire_ipg_gate""ipg", CCM_PCCR0, 12);
 clk[IMX27_CLK_MSHC_IPG_GATE] = imx_clk_gate("mshc_ipg_gate""ipg", CCM_PCCR0, 13);
 clk[IMX27_CLK_LCDC_IPG_GATE] = imx_clk_gate("lcdc_ipg_gate""ipg", CCM_PCCR0, 14);
 clk[IMX27_CLK_KPP_IPG_GATE] = imx_clk_gate("kpp_ipg_gate""ipg", CCM_PCCR0, 15);
 clk[IMX27_CLK_IIM_IPG_GATE] = imx_clk_gate("iim_ipg_gate""ipg", CCM_PCCR0, 16);
 clk[IMX27_CLK_I2C2_IPG_GATE] = imx_clk_gate("i2c2_ipg_gate""ipg", CCM_PCCR0, 17);
 clk[IMX27_CLK_I2C1_IPG_GATE] = imx_clk_gate("i2c1_ipg_gate""ipg", CCM_PCCR0, 18);
 clk[IMX27_CLK_GPT6_IPG_GATE] = imx_clk_gate("gpt6_ipg_gate""ipg", CCM_PCCR0, 19);
 clk[IMX27_CLK_GPT5_IPG_GATE] = imx_clk_gate("gpt5_ipg_gate""ipg", CCM_PCCR0, 20);
 clk[IMX27_CLK_GPT4_IPG_GATE] = imx_clk_gate("gpt4_ipg_gate""ipg", CCM_PCCR0, 21);
 clk[IMX27_CLK_GPT3_IPG_GATE] = imx_clk_gate("gpt3_ipg_gate""ipg", CCM_PCCR0, 22);
 clk[IMX27_CLK_GPT2_IPG_GATE] = imx_clk_gate("gpt2_ipg_gate""ipg", CCM_PCCR0, 23);
 clk[IMX27_CLK_GPT1_IPG_GATE] = imx_clk_gate("gpt1_ipg_gate""ipg", CCM_PCCR0, 24);
 clk[IMX27_CLK_GPIO_IPG_GATE] = imx_clk_gate("gpio_ipg_gate""ipg", CCM_PCCR0, 25);
 clk[IMX27_CLK_FEC_IPG_GATE] = imx_clk_gate("fec_ipg_gate""ipg", CCM_PCCR0, 26);
 clk[IMX27_CLK_EMMA_IPG_GATE] = imx_clk_gate("emma_ipg_gate""ipg", CCM_PCCR0, 27);
 clk[IMX27_CLK_DMA_IPG_GATE] = imx_clk_gate("dma_ipg_gate""ipg", CCM_PCCR0, 28);
 clk[IMX27_CLK_CSPI3_IPG_GATE] = imx_clk_gate("cspi3_ipg_gate""ipg", CCM_PCCR0, 29);
 clk[IMX27_CLK_CSPI2_IPG_GATE] = imx_clk_gate("cspi2_ipg_gate""ipg", CCM_PCCR0, 30);
 clk[IMX27_CLK_CSPI1_IPG_GATE] = imx_clk_gate("cspi1_ipg_gate""ipg", CCM_PCCR0, 31);
 clk[IMX27_CLK_MSHC_BAUD_GATE] = imx_clk_gate("mshc_baud_gate""mshc_div", CCM_PCCR12);
 clk[IMX27_CLK_NFC_BAUD_GATE] = imx_clk_gate("nfc_baud_gate""nfc_div", CCM_PCCR1,  3);
 clk[IMX27_CLK_SSI2_BAUD_GATE] = imx_clk_gate("ssi2_baud_gate""ssi2_div", CCM_PCCR1,  4);
 clk[IMX27_CLK_SSI1_BAUD_GATE] = imx_clk_gate("ssi1_baud_gate""ssi1_div", CCM_PCCR1,  5);
 clk[IMX27_CLK_VPU_BAUD_GATE] = imx_clk_gate("vpu_baud_gate""vpu_div", CCM_PCCR1,  6);
 clk[IMX27_CLK_PER4_GATE] = imx_clk_gate("per4_gate""per4_div", CCM_PCCR1,  7);
 clk[IMX27_CLK_PER3_GATE] = imx_clk_gate("per3_gate""per3_div", CCM_PCCR1,  8);
 clk[IMX27_CLK_PER2_GATE] = imx_clk_gate("per2_gate""per2_div", CCM_PCCR1,  9);
 clk[IMX27_CLK_PER1_GATE] = imx_clk_gate("per1_gate""per1_div", CCM_PCCR1, 10);
 clk[IMX27_CLK_USB_AHB_GATE] = imx_clk_gate("usb_ahb_gate""ahb", CCM_PCCR1, 11);
 clk[IMX27_CLK_SLCDC_AHB_GATE] = imx_clk_gate("slcdc_ahb_gate""ahb", CCM_PCCR1, 12);
 clk[IMX27_CLK_SAHARA_AHB_GATE] = imx_clk_gate("sahara_ahb_gate""ahb", CCM_PCCR1, 13);
 clk[IMX27_CLK_RTIC_AHB_GATE] = imx_clk_gate("rtic_ahb_gate""ahb", CCM_PCCR1, 14);
 clk[IMX27_CLK_LCDC_AHB_GATE] = imx_clk_gate("lcdc_ahb_gate""ahb", CCM_PCCR1, 15);
 clk[IMX27_CLK_VPU_AHB_GATE] = imx_clk_gate("vpu_ahb_gate""ahb", CCM_PCCR1, 16);
 clk[IMX27_CLK_FEC_AHB_GATE] = imx_clk_gate("fec_ahb_gate""ahb", CCM_PCCR1, 17);
 clk[IMX27_CLK_EMMA_AHB_GATE] = imx_clk_gate("emma_ahb_gate""ahb", CCM_PCCR1, 18);
 clk[IMX27_CLK_EMI_AHB_GATE] = imx_clk_gate("emi_ahb_gate""ahb", CCM_PCCR1, 19);
 clk[IMX27_CLK_DMA_AHB_GATE] = imx_clk_gate("dma_ahb_gate""ahb", CCM_PCCR1, 20);
 clk[IMX27_CLK_CSI_AHB_GATE] = imx_clk_gate("csi_ahb_gate""ahb", CCM_PCCR1, 21);
 clk[IMX27_CLK_BROM_AHB_GATE] = imx_clk_gate("brom_ahb_gate""ahb", CCM_PCCR1, 22);
 clk[IMX27_CLK_ATA_AHB_GATE] = imx_clk_gate("ata_ahb_gate""ahb", CCM_PCCR1, 23);
 clk[IMX27_CLK_WDOG_IPG_GATE] = imx_clk_gate("wdog_ipg_gate""ipg", CCM_PCCR1, 24);
 clk[IMX27_CLK_USB_IPG_GATE] = imx_clk_gate("usb_ipg_gate""ipg", CCM_PCCR1, 25);
 clk[IMX27_CLK_UART6_IPG_GATE] = imx_clk_gate("uart6_ipg_gate""ipg", CCM_PCCR1, 26);
 clk[IMX27_CLK_UART5_IPG_GATE] = imx_clk_gate("uart5_ipg_gate""ipg", CCM_PCCR1, 27);
 clk[IMX27_CLK_UART4_IPG_GATE] = imx_clk_gate("uart4_ipg_gate""ipg", CCM_PCCR1, 28);
 clk[IMX27_CLK_UART3_IPG_GATE] = imx_clk_gate("uart3_ipg_gate""ipg", CCM_PCCR1, 29);
 clk[IMX27_CLK_UART2_IPG_GATE] = imx_clk_gate("uart2_ipg_gate""ipg", CCM_PCCR1, 30);
 clk[IMX27_CLK_UART1_IPG_GATE] = imx_clk_gate("uart1_ipg_gate""ipg", CCM_PCCR1, 31);

 imx_check_clocks(clk, ARRAY_SIZE(clk));

 clk_register_clkdev(clk[IMX27_CLK_CPU_DIV], NULL, "cpu0");

 clk_prepare_enable(clk[IMX27_CLK_EMI_AHB_GATE]);

 imx_register_uart_clocks();

 imx_print_silicon_rev("i.MX27", mx27_revision());
}

static void __init mx27_clocks_init_dt(struct device_node *np)
{
 struct device_node *refnp;
 u32 fref = 26000000/* default */

 for_each_compatible_node(refnp, NULL, "fixed-clock") {
  if (!of_device_is_compatible(refnp, "fsl,imx-osc26m"))
   continue;

  if (!of_property_read_u32(refnp, "clock-frequency", &fref)) {
   of_node_put(refnp);
   break;
  }
 }

 ccm = of_iomap(np, 0);

 _mx27_clocks_init(fref);

 clk_data.clks = clk;
 clk_data.clk_num = ARRAY_SIZE(clk);
 of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
}
CLK_OF_DECLARE(imx27_ccm, "fsl,imx27-ccm", mx27_clocks_init_dt);

Messung V0.5 in Prozent
C=91 H=93 G=91

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002