blob: 3e9f5e57ed012c9c34104027d82109b1093208f6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
maxims@google.com2d5a2ad2017-01-18 13:44:56 -08002/*
3 * Copyright (C) 2016 Google, Inc
maxims@google.com2d5a2ad2017-01-18 13:44:56 -08004 */
5
6#include <common.h>
7#include <dm.h>
maxims@google.comadea66c2017-04-17 12:00:23 -07008#include <asm/io.h>
maxims@google.com2d5a2ad2017-01-18 13:44:56 -08009#include <asm/arch/scu_ast2500.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070010#include <linux/err.h>
maxims@google.com2d5a2ad2017-01-18 13:44:56 -080011
12int ast_get_clk(struct udevice **devp)
13{
14 return uclass_get_device_by_driver(UCLASS_CLK,
15 DM_GET_DRIVER(aspeed_ast2500_scu), devp);
16}
17
18void *ast_get_scu(void)
19{
20 struct ast2500_clk_priv *priv;
21 struct udevice *dev;
22 int ret;
23
24 ret = ast_get_clk(&dev);
25 if (ret)
26 return ERR_PTR(ret);
27
28 priv = dev_get_priv(dev);
29
30 return priv->scu;
31}
maxims@google.comadea66c2017-04-17 12:00:23 -070032
33void ast_scu_unlock(struct ast2500_scu *scu)
34{
35 writel(SCU_UNLOCK_VALUE, &scu->protection_key);
36 while (!readl(&scu->protection_key))
37 ;
38}
39
40void ast_scu_lock(struct ast2500_scu *scu)
41{
42 writel(~SCU_UNLOCK_VALUE, &scu->protection_key);
43 while (readl(&scu->protection_key))
44 ;
45}