Linux Audio

Check our new training course

Loading...
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0-only
 2/*
 3 * OMAP4 PRCM_MPU module functions
 4 *
 5 * Copyright (C) 2009 Nokia Corporation
 6 * Paul Walmsley
 
 
 
 
 7 */
 8
 9#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/errno.h>
12#include <linux/err.h>
13#include <linux/io.h>
14
15#include "iomap.h"
16#include "common.h"
17#include "prcm_mpu44xx.h"
18#include "cm-regbits-44xx.h"
19
20/*
21 * prcm_mpu_base: the virtual address of the start of the PRCM_MPU IP
22 *   block registers
23 */
24struct omap_domain_base prcm_mpu_base;
25
26/* PRCM_MPU low-level functions */
27
28u32 omap4_prcm_mpu_read_inst_reg(s16 inst, u16 reg)
29{
30	return readl_relaxed(OMAP44XX_PRCM_MPU_REGADDR(inst, reg));
31}
32
33void omap4_prcm_mpu_write_inst_reg(u32 val, s16 inst, u16 reg)
34{
35	writel_relaxed(val, OMAP44XX_PRCM_MPU_REGADDR(inst, reg));
 
 
 
 
 
 
 
 
 
 
 
 
36}
37
38/**
39 * omap2_set_globals_prcm_mpu - set the MPU PRCM base address (for early use)
40 * @prcm_mpu: PRCM_MPU base virtual address
41 *
42 * XXX Will be replaced when the PRM/CM drivers are completed.
43 */
44void __init omap2_set_globals_prcm_mpu(void __iomem *prcm_mpu)
45{
46	prcm_mpu_base.va = prcm_mpu;
47}
v4.17
 
 1/*
 2 * OMAP4 PRCM_MPU module functions
 3 *
 4 * Copyright (C) 2009 Nokia Corporation
 5 * Paul Walmsley
 6 *
 7 * This program is free software; you can redistribute it and/or modify
 8 * it under the terms of the GNU General Public License version 2 as
 9 * published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/errno.h>
15#include <linux/err.h>
16#include <linux/io.h>
17
18#include "iomap.h"
19#include "common.h"
20#include "prcm_mpu44xx.h"
21#include "cm-regbits-44xx.h"
22
23/*
24 * prcm_mpu_base: the virtual address of the start of the PRCM_MPU IP
25 *   block registers
26 */
27struct omap_domain_base prcm_mpu_base;
28
29/* PRCM_MPU low-level functions */
30
31u32 omap4_prcm_mpu_read_inst_reg(s16 inst, u16 reg)
32{
33	return readl_relaxed(OMAP44XX_PRCM_MPU_REGADDR(inst, reg));
34}
35
36void omap4_prcm_mpu_write_inst_reg(u32 val, s16 inst, u16 reg)
37{
38	writel_relaxed(val, OMAP44XX_PRCM_MPU_REGADDR(inst, reg));
39}
40
41u32 omap4_prcm_mpu_rmw_inst_reg_bits(u32 mask, u32 bits, s16 inst, s16 reg)
42{
43	u32 v;
44
45	v = omap4_prcm_mpu_read_inst_reg(inst, reg);
46	v &= ~mask;
47	v |= bits;
48	omap4_prcm_mpu_write_inst_reg(v, inst, reg);
49
50	return v;
51}
52
53/**
54 * omap2_set_globals_prcm_mpu - set the MPU PRCM base address (for early use)
55 * @prcm_mpu: PRCM_MPU base virtual address
56 *
57 * XXX Will be replaced when the PRM/CM drivers are completed.
58 */
59void __init omap2_set_globals_prcm_mpu(void __iomem *prcm_mpu)
60{
61	prcm_mpu_base.va = prcm_mpu;
62}