mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-06 05:06:29 +00:00
afcb7c07be
Now the clock ids are no more defined in private headers, cleanup and include the dt-bindings headers from the main driver file. Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Reviewed-by: Dmitry Rokosov <ddrokosov@sberdevices.ru> Link: https://lore.kernel.org/r/20230607-topic-amlogic-upstream-clkid-public-migration-v2-17-38172d17c27a@linaro.org Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
29 lines
725 B
C
29 lines
725 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Amlogic A1 PLL Clock Controller internals
|
|
*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
* Author: Jian Hu <jian.hu@amlogic.com>
|
|
*
|
|
* Copyright (c) 2023, SberDevices. All Rights Reserved.
|
|
* Author: Dmitry Rokosov <ddrokosov@sberdevices.ru>
|
|
*/
|
|
|
|
#ifndef __A1_PLL_H
|
|
#define __A1_PLL_H
|
|
|
|
#include "clk-pll.h"
|
|
|
|
/* PLL register offset */
|
|
#define ANACTRL_FIXPLL_CTRL0 0x0
|
|
#define ANACTRL_FIXPLL_CTRL1 0x4
|
|
#define ANACTRL_FIXPLL_STS 0x14
|
|
#define ANACTRL_HIFIPLL_CTRL0 0xc0
|
|
#define ANACTRL_HIFIPLL_CTRL1 0xc4
|
|
#define ANACTRL_HIFIPLL_CTRL2 0xc8
|
|
#define ANACTRL_HIFIPLL_CTRL3 0xcc
|
|
#define ANACTRL_HIFIPLL_CTRL4 0xd0
|
|
#define ANACTRL_HIFIPLL_STS 0xd4
|
|
|
|
#endif /* __A1_PLL_H */
|