linux/drivers/clk/imx/clk-imxrt1050.c

// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
/*
 * Copyright (C) 2021
 * Author(s):
 * Jesse Taube <[email protected]>
 * Giulio Benetti <[email protected]>
 */
#include <linux/clk.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
#include <linux/platform_device.h>
#include <dt-bindings/clock/imxrt1050-clock.h>

#include "clk.h"

static const char * const pll_ref_sels[] =;
static const char * const per_sels[] =;
static const char * const pll1_bypass_sels[] =;
static const char * const pll2_bypass_sels[] =;
static const char * const pll3_bypass_sels[] =;
static const char * const pll5_bypass_sels[] =;
static const char *const pre_periph_sels[] =;
static const char *const periph_sels[] =;
static const char *const usdhc_sels[] =;
static const char *const lpuart_sels[] =;
static const char *const lcdif_sels[] =;
static const char *const semc_alt_sels[] =;
static const char *const semc_sels[] =;

static struct clk_hw **hws;
static struct clk_hw_onecell_data *clk_hw_data;

static int imxrt1050_clocks_probe(struct platform_device *pdev)
{}
static const struct of_device_id imxrt1050_clk_of_match[] =;
MODULE_DEVICE_TABLE(of, imxrt1050_clk_of_match);

static struct platform_driver imxrt1050_clk_driver =;
module_platform_driver();

MODULE_LICENSE();
MODULE_AUTHOR();
MODULE_AUTHOR();