nuttx-update/drivers/clk/clk_divider.c

393 lines
9.5 KiB
C
Raw Normal View History

/****************************************************************************
* drivers/clk/clk_divider.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/clk/clk.h>
#include <nuttx/clk/clk_provider.h>
#include <debug.h>
#include <stdlib.h>
#include "clk.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define to_clk_divider(_clk) (FAR struct clk_divider_s *) \
(_clk->private_data)
/****************************************************************************
* Private Functions
****************************************************************************/
static uint32_t _get_maxdiv(uint8_t width, uint16_t flags)
{
if (flags & CLK_DIVIDER_MAX_HALF)
{
return MASK(width - 1) + 1;
}
if (flags & CLK_DIVIDER_ONE_BASED)
{
return MASK(width);
}
if (flags & CLK_DIVIDER_DIV_NEED_EVEN)
{
return MASK(width) - 1;
}
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
return 1 << MASK(width);
}
return MASK(width) + 1;
}
static uint32_t _get_div(uint32_t val, uint16_t flags)
{
if (flags & CLK_DIVIDER_ONE_BASED)
{
return val;
}
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
return 1 << val;
}
return val + 1;
}
static uint32_t _get_val(uint32_t div, uint16_t flags)
{
if (flags & CLK_DIVIDER_ONE_BASED)
{
return div;
}
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
return ffs(div);
}
return div - 1;
}
static uint32_t divider_recalc_rate(uint32_t parent_rate,
uint32_t val, uint16_t flags)
{
uint32_t div;
div = _get_div(val, flags);
if (!div)
{
return parent_rate;
}
return div_round_up(parent_rate, div);
}
static uint32_t clk_divider_recalc_rate(FAR struct clk_s *clk,
uint32_t parent_rate)
{
FAR struct clk_divider_s *divider = to_clk_divider(clk);
uint32_t val;
val = clk_read(divider->reg) >> divider->shift;
val &= MASK(divider->width);
return divider_recalc_rate(parent_rate, val, divider->flags);
}
static uint32_t _div_round_up(uint32_t parent_rate, uint32_t rate,
uint16_t flags)
{
uint32_t div = div_round_up(parent_rate, rate);
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
div = roundup_pow_of_two(div);
}
return div;
}
static uint32_t _div_round_closest(uint32_t parent_rate,
uint32_t rate, uint16_t flags)
{
uint32_t up;
uint32_t down;
uint32_t up_rate;
uint32_t down_rate;
up = div_round_up(parent_rate, rate);
down = parent_rate / rate;
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
up = roundup_pow_of_two(up);
down = rounddown_pow_of_two(down);
}
up_rate = div_round_up(parent_rate, up);
down_rate = div_round_up(parent_rate, down);
return (rate - up_rate) <= (down_rate - rate) ? up : down;
}
static uint32_t _div_round(uint32_t parent_rate, uint32_t rate,
uint16_t flags)
{
if (flags & CLK_DIVIDER_ROUND_CLOSEST)
{
return _div_round_closest(parent_rate, rate, flags);
}
return _div_round_up(parent_rate, rate, flags);
}
static bool _is_best_div(uint32_t rate, uint32_t now,
uint32_t best, uint16_t flags)
{
if (flags & CLK_DIVIDER_ROUND_CLOSEST)
{
MacOs: fix the sim compile warning in MacOS CC: clk/clk_fixed_rate.c clk/clk_divider.c:177:14: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(rate - now) < abs(rate - best); ^ clk/clk_divider.c:177:14: note: remove the call to 'abs' since unsigned values cannot be negative return abs(rate - now) < abs(rate - best); ^~~ clk/clk_divider.c:177:32: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(rate - now) < abs(rate - best); ^ clk/clk_divider.c:177:32: note: remove the call to 'abs' since unsigned values cannot be negative return abs(rate - now) < abs(rate - best); ^~~ CC: mm_heap/mm_initialize.c 2 warnings generated. clk/clk.c:1324:11: warning: variable 'irqflags' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] if (clk->parents == NULL) ^~~~~~~~~~~~~~~~~~~~ clk/clk.c:1341:19: note: uninitialized use occurs here clk_list_unlock(irqflags); ^~~~~~~~ clk/clk.c:1324:7: note: remove the 'if' if its condition is always false if (clk->parents == NULL) ^~~~~~~~~~~~~~~~~~~~~~~~~ clk/clk.c:1255:22: note: initialize the variable 'irqflags' to silence this warning irqstate_t irqflags; ^ = 0 CC: clk/clk_mux.c clk/clk_multiplier.c:110:14: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(rate - new) < abs(rate - best); ^ clk/clk_multiplier.c:110:14: note: remove the call to 'abs' since unsigned values cannot be negative return abs(rate - new) < abs(rate - best); ^~~ clk/clk_multiplier.c:110:32: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(rate - new) < abs(rate - best); ^ clk/clk_multiplier.c:110:32: note: remove the call to 'abs' since unsigned values cannot be negative return abs(rate - new) < abs(rate - best); ^~~ clk/clk_mux.c:47:14: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(now - rate) < abs(best - rate); ^ clk/clk_mux.c:47:14: note: remove the call to 'abs' since unsigned values cannot be negative return abs(now - rate) < abs(best - rate); ^~~ clk/clk_mux.c:47:32: warning: taking the absolute value of unsigned type 'unsigned int' has no effect [-Wabsolute-value] return abs(now - rate) < abs(best - rate); ^ clk/clk_mux.c:47:32: note: remove the call to 'abs' since unsigned values cannot be negative return abs(now - rate) < abs(best - rate); ^~~ AS: sim/sim_fork_x86.S 2 warnings generated. 1 warning2 warnings generated. generated. iperf.c:325:14: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'unsigned long' [-Wformat] now_len -last_len, ^~~~~~~~~~~~~~~~~ iperf.c:340:14: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'unsigned long') [-Wformat] now_len, ^~~~~~~ CC: misc/rpmsgblk_server.c 2 warnings generated. :28: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'unsigned long') [-Wformat] (uintmax_t)skip); ^~~~~~~~~~~~~~~ nsh_dbgcmds.c:473:20: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'unsigned long') [-Wformat] (uintmax_t)position); ^~~~~~~~~~~~~~~~~~~ CC: nsh_main.c 2 warnings generated. return INTMAX_MIN; ~~~~~~ ^~~~~~~~~~ CC: nsh_system.c note: expanded from macro 'INTMAX_MIN' ^~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:65:41: note: expanded from macro 'INT64_MIN' ~~~~~~~~~~~^~~ inttypes/lib_strtoimax.c:103:37: warning: implicit conversion from 'long long' to 'intmax_t' (aka 'long') changes value from -9223372036854775808 to 0 [-Wconstant-conversion] return (accum == limit) ? INTMAX_MIN : -(intmax_t)accum; ~~~~~~ ^~~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:136:29: note: expanded from macro 'INTMAX_MIN' ^~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:65:41: note: expanded from macro 'INT64_MIN' ~~~~~~~~~~~^~~ inttypes/lib_strtoimax.c:106:17: warning: result of comparison of constant 9223372036854775807 with expression of type 'uintmax_t' (aka 'unsigned long') is always false [-Wtautological-constant-out-of-range-compare] if (accum > INTMAX_MAX) ~~~~~ ^ ~~~~~~~~~~ inttypes/lib_strtoimax.c:109:18: warning: implicit conversion from 'long long' to 'intmax_t' (aka 'long') changes value from 9223372036854775807 to -1 [-Wconstant-conversion] return INTMAX_MAX; ~~~~~~ ^~~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:137:29: note: expanded from macro 'INTMAX_MAX' ^~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:66:29: note: expanded from macro 'INT64_MAX' ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/vela/work/nuttx/include/arch/inttypes.h:35:23: note: expanded from macro 'INT64_C' ^~~~~~~ <scratch space>:12:1: note: expanded from here 9223372036854775807ll ^~~~~~~~~~~~~~~~~~~~~ syslog/vsyslog.c:212:32: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'unsigned long') [-Wformat] , (uintmax_t)ts.tv_sec ^~~~~~~~~~~~~~~~~~~~ CC: iob/iob_free.c 4 warnings generated. 1 warning generated. CC: mqueue/mq_msgqalloc.c inttypes/lib_strtoumax.c:91:23: warning: implicit conversion from 'unsigned long long' to 'uintmax_t' (aka 'unsigned long') changes value from 18446744073709551615 to 4294967295 [-Wconstant-conversion] accum = UINTMAX_MAX; ~ ^~~~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:140:29: note: expanded from macro 'UINTMAX_MAX' ^~~~~~~~~~ /Users/vela/work/nuttx/include/stdint.h:67:29: note: expanded from macro 'UINT64_MAX' ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/vela/work/nuttx/include/arch/inttypes.h:36:23: note: expanded from macro 'UINT64_C' ^~~~~~~~ <scratch space>:8:1: note: expanded from here 18446744073709551615ull ^~~~~~~~~~~~~~~~~~~~~~~ CC: icmp/icmp_ioctl.c 1 warning generated. time/lib_strftime.c:584:52: warning: format specifies type 'uintmax_t' (aka 'unsigned long long') but the argument has type 'uintmax_t' (aka 'unsigned long') [-Wformat] len = snprintf(dest, chleft, "%ju", (uintmax_t)mktime(&tmp)); ~~~ ^~~~~~~~~~~~~~~~~~~~~~~ %ju Signed-off-by: Bowen Wang <wangbowen6@xiaomi.com>
2024-10-17 17:06:11 +08:00
return clk_is_best_rate_closest(rate, now, best);
}
return now <= rate && now > best;
}
static uint32_t _next_div(uint32_t div, uint16_t flags)
{
div++;
if (flags & CLK_DIVIDER_POWER_OF_TWO)
{
return roundup_pow_of_two(div);
}
if (flags & CLK_DIVIDER_DIV_NEED_EVEN)
{
div++;
}
return div;
}
static uint32_t clk_divider_bestdiv(FAR struct clk_s *clk, uint32_t rate,
uint32_t *best_parent_rate,
uint8_t width)
{
uint32_t i;
uint32_t bestdiv = 0;
uint32_t maxdiv;
uint32_t mindiv;
uint32_t parent_rate;
uint32_t best = 0;
uint32_t now;
FAR struct clk_divider_s *divider = to_clk_divider(clk);
if (!rate)
{
rate = 1;
}
if (divider->flags & CLK_DIVIDER_READ_ONLY)
{
bestdiv = clk_read(divider->reg) >> divider->shift;
bestdiv &= MASK(divider->width);
bestdiv = _get_div(bestdiv, divider->flags);
return bestdiv;
}
maxdiv = _get_maxdiv(width, divider->flags);
if (!(clk->flags & CLK_SET_RATE_PARENT))
{
parent_rate = *best_parent_rate;
if (parent_rate > rate)
{
bestdiv = _div_round(parent_rate, rate, divider->flags);
bestdiv = bestdiv > maxdiv ? maxdiv : bestdiv;
}
else
{
bestdiv = 1;
}
return bestdiv;
}
mindiv = 0;
if (divider->flags & CLK_DIVIDER_MINDIV_MSK)
{
mindiv = (divider->flags & CLK_DIVIDER_MINDIV_MSK)
>> CLK_DIVIDER_MINDIV_OFF;
mindiv -= 1;
}
maxdiv = MIN(UINT32_MAX / rate, maxdiv);
for (i = _next_div(mindiv, divider->flags); i <= maxdiv;
i = _next_div(i, divider->flags))
{
parent_rate = clk_round_rate(clk_get_parent(clk),
rate * i);
now = div_round_up(parent_rate, i);
if (_is_best_div(rate, now, best, divider->flags))
{
bestdiv = i;
best = now;
*best_parent_rate = parent_rate;
}
}
if (!bestdiv)
{
bestdiv = _get_maxdiv(width, divider->flags);
*best_parent_rate = clk_round_rate(clk_get_parent(clk), 1);
}
return bestdiv;
}
static uint32_t divider_round_rate(FAR struct clk_s *clk, uint32_t rate,
uint32_t *prate, uint8_t width)
{
uint32_t div;
div = clk_divider_bestdiv(clk, rate, prate, width);
return div_round_up(*prate, div);
}
static uint32_t clk_divider_round_rate(FAR struct clk_s *clk, uint32_t rate,
uint32_t *prate)
{
FAR struct clk_divider_s *divider = to_clk_divider(clk);
return divider_round_rate(clk, rate, prate, divider->width);
}
static int32_t divider_get_val(uint32_t rate, uint32_t parent_rate,
uint8_t width, uint16_t flags)
{
uint32_t div;
uint32_t value;
if (rate == 0)
{
return -EINVAL;
}
div = div_round_up(parent_rate, rate);
if ((flags & CLK_DIVIDER_POWER_OF_TWO) && !IS_POWER_OF_2(div))
{
return -EINVAL;
}
value = _get_val(div, flags);
return MIN(value, MASK(width));
}
static int clk_divider_set_rate(FAR struct clk_s *clk, uint32_t rate,
uint32_t parent_rate)
{
FAR struct clk_divider_s *divider = to_clk_divider(clk);
int32_t value;
uint32_t val;
value = divider_get_val(rate, parent_rate, divider->width, divider->flags);
if (value < 0)
{
return value;
}
if (divider->flags & CLK_DIVIDER_HIWORD_MASK)
{
val = MASK(divider->width) << (divider->shift + 16);
}
else
{
val = clk_read(divider->reg);
val &= ~(MASK(divider->width) << divider->shift);
}
val |= value << divider->shift;
clk_write(divider->reg, val);
return 0;
}
/****************************************************************************
* Public Data
****************************************************************************/
const struct clk_ops_s g_clk_divider_ops =
{
.recalc_rate = clk_divider_recalc_rate,
.round_rate = clk_divider_round_rate,
.set_rate = clk_divider_set_rate,
};
/****************************************************************************
* Public Functions
****************************************************************************/
FAR struct clk_s *clk_register_divider(FAR const char *name,
FAR const char *parent_name,
uint8_t flags, uint32_t reg,
uint8_t shift, uint8_t width,
uint16_t clk_divider_flags)
{
struct clk_divider_s div;
FAR const char **parent_names;
uint8_t num_parents;
if (clk_divider_flags & CLK_DIVIDER_HIWORD_MASK)
{
if (width + shift > 16)
{
return NULL;
}
}
parent_names = parent_name ? &parent_name: NULL;
num_parents = parent_name ? 1 : 0;
div.reg = reg;
div.shift = shift;
div.width = width;
div.flags = clk_divider_flags;
return clk_register(name, parent_names, num_parents, flags,
&g_clk_divider_ops, &div, sizeof(div));
}