freebsd-src/sys/dev/qcom_clk/qcom_clk_apssdiv.c
Emmanuel Vadot be82b3a0bf clk: Move clock code in dev/clk
We've removed kernel option EXT_RESOURCES almost two years ago.
While it was ok to have some code under a common 'extres' subdirectory
at first, we now have a lot of consumer of it and we made it mandatory
so no need to have it under a cryptic name.

Reviewed by:	mhorne
Sponsored by:	Beckhoff Automation GmbH & Co. KG
Differential Revision:	https://reviews.freebsd.org/D43191
2024-01-10 19:20:26 +01:00

282 lines
7.3 KiB
C

/*-
* Copyright (c) 2021 Adrian Chadd <adrian@FreeBSD.org>.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/rman.h>
#include <machine/bus.h>
#include <dev/clk/clk.h>
#include <dev/clk/clk_div.h>
#include <dev/clk/clk_fixed.h>
#include <dev/clk/clk_mux.h>
#include "qcom_clk_freqtbl.h"
#include "qcom_clk_apssdiv.h"
#include "clkdev_if.h"
/*
* This is a combination gate, divisor/PLL configuration
* for the APSS CPU clock.
*/
#if 0
#define DPRINTF(dev, msg...) device_printf(dev, "cpufreq_dt: " msg);
#else
#define DPRINTF(dev, msg...)
#endif
struct qcom_clk_apssdiv_sc {
struct clknode *clknode;
uint32_t div_offset;
uint32_t div_width;
uint32_t div_shift;
uint32_t enable_offset;
uint32_t enable_shift;
const struct qcom_clk_freq_tbl *freq_tbl;
};
static uint64_t
qcom_clk_apssdiv_calc_rate(struct clknode *clk, uint64_t freq, uint32_t cdiv)
{
uint32_t pre_div;
/*
* The divisor isn't a linear map with a linear pre-divisor.
*/
if (cdiv > 10) {
pre_div = (cdiv + 1) * 2;
} else {
pre_div = cdiv + 12;
}
/*
* Multiplier is a fixed "2" here.
*/
return (freq * 2L) / pre_div;
}
static int
qcom_clk_apssdiv_recalc(struct clknode *clk, uint64_t *freq)
{
struct qcom_clk_apssdiv_sc *sc;
uint32_t reg, cdiv;
sc = clknode_get_softc(clk);
if (freq == NULL || *freq == 0) {
printf("%s: called; NULL or 0 frequency\n", __func__);
return (ENXIO);
}
CLKDEV_DEVICE_LOCK(clknode_get_device(sc->clknode));
CLKDEV_READ_4(clknode_get_device(sc->clknode), sc->div_offset, &reg);
CLKDEV_DEVICE_UNLOCK(clknode_get_device(sc->clknode));
cdiv = (reg >> sc->div_shift) & ((1U << sc->div_width) - 1);
DPRINTF(clknode_get_device(sc->clknode),
"%s: called; cdiv=0x%x, freq=%llu\n", __func__, cdiv, *freq);
*freq = qcom_clk_apssdiv_calc_rate(clk, *freq, cdiv);
DPRINTF(clknode_get_device(sc->clknode),
"%s: called; freq is %llu\n", __func__, *freq);
return (0);
}
#if 0
static bool
qcom_clk_apssdiv_get_gate_locked(struct qcom_clk_apssdiv_sc *sc)
{
uint32_t reg;
if (sc->enable_offset == 0)
return (false);
CLKDEV_READ_4(clknode_get_device(sc->clknode), sc->enable_offset,
&reg);
return (!! (reg & (1U << sc->enable_shift)));
}
#endif
static int
qcom_clk_apssdiv_init(struct clknode *clk, device_t dev)
{
/*
* There's only a single parent here for an fixed divisor,
* so just set it to 0; the caller doesn't need to supply it.
*
* Note that the freqtbl entries have an upstream clock,
* but the APSS div/gate only has a single upstream and we
* don't program anything else specific in here.
*/
clknode_init_parent_idx(clk, 0);
return (0);
}
static int
qcom_clk_apssdiv_set_gate(struct clknode *clk, bool enable)
{
struct qcom_clk_apssdiv_sc *sc;
uint32_t reg;
sc = clknode_get_softc(clk);
if (sc->enable_offset == 0) {
return (ENXIO);
}
DPRINTF(clknode_get_device(sc->clknode),
"%s: called; enable=%d\n", __func__, enable);
CLKDEV_DEVICE_LOCK(clknode_get_device(sc->clknode));
CLKDEV_READ_4(clknode_get_device(sc->clknode), sc->enable_offset,
&reg);
if (enable) {
reg |= (1U << sc->enable_shift);
} else {
reg &= ~(1U << sc->enable_shift);
}
CLKDEV_WRITE_4(clknode_get_device(sc->clknode), sc->enable_offset,
reg);
CLKDEV_DEVICE_UNLOCK(clknode_get_device(sc->clknode));
return (0);
}
/*
* Set frequency
*
* fin - the parent frequency, if exists
* fout - starts as the requested frequency, ends with the configured
* or dry-run frequency
* Flags - CLK_SET_DRYRUN, CLK_SET_ROUND_UP, CLK_SET_ROUND_DOWN
* retval - 0, ERANGE
*/
static int
qcom_clk_apssdiv_set_freq(struct clknode *clk, uint64_t fin, uint64_t *fout,
int flags, int *stop)
{
const struct qcom_clk_freq_tbl *f;
struct qcom_clk_apssdiv_sc *sc;
uint64_t f_freq;
uint32_t reg;
sc = clknode_get_softc(clk);
/* There are no further PLLs to set in this chain */
*stop = 1;
/* Search the table for a suitable frequency */
f = qcom_clk_freq_tbl_lookup(sc->freq_tbl, *fout);
if (f == NULL) {
return (ERANGE);
}
/*
* Calculate what the resultant frequency would be based on the
* parent PLL.
*/
f_freq = qcom_clk_apssdiv_calc_rate(clk, fin, f->pre_div);
DPRINTF(clknode_get_device(sc->clknode),
"%s: dryrun: %d, fin=%llu fout=%llu f_freq=%llu pre_div=%u"
" target_freq=%llu\n",
__func__,
!! (flags & CLK_SET_DRYRUN),
fin, *fout, f_freq, f->pre_div, f->freq);
if (flags & CLK_SET_DRYRUN) {
*fout = f_freq;
return (0);
}
/*
* Program in the new pre-divisor.
*/
CLKDEV_DEVICE_LOCK(clknode_get_device(sc->clknode));
CLKDEV_READ_4(clknode_get_device(sc->clknode), sc->div_offset, &reg);
reg &= ~(((1U << sc->div_width) - 1) << sc->div_shift);
reg |= (f->pre_div << sc->div_shift);
CLKDEV_WRITE_4(clknode_get_device(sc->clknode), sc->div_offset, reg);
CLKDEV_DEVICE_UNLOCK(clknode_get_device(sc->clknode));
/*
* The linux driver notes there's no status/completion bit to poll.
* So sleep for a bit and hope that's enough time for it to
* settle.
*/
DELAY(1);
*fout = f_freq;
return (0);
}
static clknode_method_t qcom_clk_apssdiv_methods[] = {
/* Device interface */
CLKNODEMETHOD(clknode_init, qcom_clk_apssdiv_init),
CLKNODEMETHOD(clknode_recalc_freq, qcom_clk_apssdiv_recalc),
CLKNODEMETHOD(clknode_set_gate, qcom_clk_apssdiv_set_gate),
CLKNODEMETHOD(clknode_set_freq, qcom_clk_apssdiv_set_freq),
CLKNODEMETHOD_END
};
DEFINE_CLASS_1(qcom_clk_apssdiv, qcom_clk_apssdiv_class,
qcom_clk_apssdiv_methods, sizeof(struct qcom_clk_apssdiv_sc),
clknode_class);
int
qcom_clk_apssdiv_register(struct clkdom *clkdom,
struct qcom_clk_apssdiv_def *clkdef)
{
struct clknode *clk;
struct qcom_clk_apssdiv_sc *sc;
clk = clknode_create(clkdom, &qcom_clk_apssdiv_class, &clkdef->clkdef);
if (clk == NULL)
return (1);
sc = clknode_get_softc(clk);
sc->clknode = clk;
sc->div_offset = clkdef->div_offset;
sc->div_width = clkdef->div_width;
sc->div_shift = clkdef->div_shift;
sc->freq_tbl = clkdef->freq_tbl;
sc->enable_offset = clkdef->enable_offset;
sc->enable_shift = clkdef->enable_shift;
clknode_register(clkdom, clk);
return (0);
}