Linux Audio

Check our new training course

Loading...
v3.5.6
 
  1/*
  2 * OMAP4 PRM instance functions
  3 *
  4 * Copyright (C) 2009 Nokia Corporation
  5 * Copyright (C) 2011 Texas Instruments, Inc.
  6 * Paul Walmsley
  7 *
  8 * This program is free software; you can redistribute it and/or modify
  9 * it under the terms of the GNU General Public License version 2 as
 10 * published by the Free Software Foundation.
 11 */
 12
 13#include <linux/kernel.h>
 14#include <linux/types.h>
 15#include <linux/errno.h>
 16#include <linux/err.h>
 17#include <linux/io.h>
 18
 19#include "iomap.h"
 20#include "common.h"
 21#include "prcm-common.h"
 22#include "prm44xx.h"
 
 
 23#include "prminst44xx.h"
 24#include "prm-regbits-44xx.h"
 25#include "prcm44xx.h"
 
 26#include "prcm_mpu44xx.h"
 
 
 
 27
 28static void __iomem *_prm_bases[OMAP4_MAX_PRCM_PARTITIONS];
 29
 30/**
 31 * omap_prm_base_init - Populates the prm partitions
 32 *
 33 * Populates the base addresses of the _prm_bases
 34 * array used for read/write of prm module registers.
 35 */
 36void omap_prm_base_init(void)
 37{
 38	_prm_bases[OMAP4430_PRM_PARTITION] = prm_base;
 39	_prm_bases[OMAP4430_PRCM_MPU_PARTITION] = prcm_mpu_base;
 
 
 
 
 
 
 
 
 
 
 
 
 40}
 41
 42/* Read a register in a PRM instance */
 43u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx)
 44{
 45	BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS ||
 46	       part == OMAP4430_INVALID_PRCM_PARTITION ||
 47	       !_prm_bases[part]);
 48	return __raw_readl(_prm_bases[part] + inst + idx);
 49}
 50
 51/* Write into a register in a PRM instance */
 52void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx)
 53{
 54	BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS ||
 55	       part == OMAP4430_INVALID_PRCM_PARTITION ||
 56	       !_prm_bases[part]);
 57	__raw_writel(val, _prm_bases[part] + inst + idx);
 58}
 59
 60/* Read-modify-write a register in PRM. Caller must lock */
 61u32 omap4_prminst_rmw_inst_reg_bits(u32 mask, u32 bits, u8 part, s16 inst,
 62				    u16 idx)
 63{
 64	u32 v;
 65
 66	v = omap4_prminst_read_inst_reg(part, inst, idx);
 67	v &= ~mask;
 68	v |= bits;
 69	omap4_prminst_write_inst_reg(v, part, inst, idx);
 70
 71	return v;
 72}
 73
 74/*
 75 * Address offset (in bytes) between the reset control and the reset
 76 * status registers: 4 bytes on OMAP4
 77 */
 78#define OMAP4_RST_CTRL_ST_OFFSET		4
 79
 80/**
 81 * omap4_prminst_is_hardreset_asserted - read the HW reset line state of
 82 * submodules contained in the hwmod module
 83 * @rstctrl_reg: RM_RSTCTRL register address for this module
 84 * @shift: register bit shift corresponding to the reset line to check
 85 *
 86 * Returns 1 if the (sub)module hardreset line is currently asserted,
 87 * 0 if the (sub)module hardreset line is not currently asserted, or
 88 * -EINVAL upon parameter error.
 89 */
 90int omap4_prminst_is_hardreset_asserted(u8 shift, u8 part, s16 inst,
 91					u16 rstctrl_offs)
 92{
 93	u32 v;
 94
 95	v = omap4_prminst_read_inst_reg(part, inst, rstctrl_offs);
 96	v &= 1 << shift;
 97	v >>= shift;
 98
 99	return v;
100}
101
102/**
103 * omap4_prminst_assert_hardreset - assert the HW reset line of a submodule
104 * @rstctrl_reg: RM_RSTCTRL register address for this module
105 * @shift: register bit shift corresponding to the reset line to assert
106 *
107 * Some IPs like dsp, ipu or iva contain processors that require an HW
108 * reset line to be asserted / deasserted in order to fully enable the
109 * IP.  These modules may have multiple hard-reset lines that reset
110 * different 'submodules' inside the IP block.  This function will
111 * place the submodule into reset.  Returns 0 upon success or -EINVAL
112 * upon an argument error.
113 */
114int omap4_prminst_assert_hardreset(u8 shift, u8 part, s16 inst,
115				   u16 rstctrl_offs)
116{
117	u32 mask = 1 << shift;
118
119	omap4_prminst_rmw_inst_reg_bits(mask, mask, part, inst, rstctrl_offs);
120
121	return 0;
122}
123
124/**
125 * omap4_prminst_deassert_hardreset - deassert a submodule hardreset line and
126 * wait
127 * @rstctrl_reg: RM_RSTCTRL register address for this module
128 * @shift: register bit shift corresponding to the reset line to deassert
 
 
 
 
 
129 *
130 * Some IPs like dsp, ipu or iva contain processors that require an HW
131 * reset line to be asserted / deasserted in order to fully enable the
132 * IP.  These modules may have multiple hard-reset lines that reset
133 * different 'submodules' inside the IP block.  This function will
134 * take the submodule out of reset and wait until the PRCM indicates
135 * that the reset has completed before returning.  Returns 0 upon success or
136 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
137 * of reset, or -EBUSY if the submodule did not exit reset promptly.
138 */
139int omap4_prminst_deassert_hardreset(u8 shift, u8 part, s16 inst,
140				     u16 rstctrl_offs)
141{
142	int c;
143	u32 mask = 1 << shift;
144	u16 rstst_offs = rstctrl_offs + OMAP4_RST_CTRL_ST_OFFSET;
145
146	/* Check the current status to avoid de-asserting the line twice */
147	if (omap4_prminst_is_hardreset_asserted(shift, part, inst,
148						rstctrl_offs) == 0)
149		return -EEXIST;
150
151	/* Clear the reset status by writing 1 to the status bit */
152	omap4_prminst_rmw_inst_reg_bits(0xffffffff, mask, part, inst,
153					rstst_offs);
154	/* de-assert the reset control line */
155	omap4_prminst_rmw_inst_reg_bits(mask, 0, part, inst, rstctrl_offs);
156	/* wait the status to be set */
157	omap_test_timeout(omap4_prminst_is_hardreset_asserted(shift, part, inst,
158							      rstst_offs),
159			  MAX_MODULE_HARDRESET_WAIT, c);
160
161	return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;
162}
163
164
165void omap4_prminst_global_warm_sw_reset(void)
166{
167	u32 v;
 
168
169	v = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
170				    OMAP4430_PRM_DEVICE_INST,
171				    OMAP4_PRM_RSTCTRL_OFFSET);
 
 
172	v |= OMAP4430_RST_GLOBAL_WARM_SW_MASK;
173	omap4_prminst_write_inst_reg(v, OMAP4430_PRM_PARTITION,
174				 OMAP4430_PRM_DEVICE_INST,
175				 OMAP4_PRM_RSTCTRL_OFFSET);
176
177	/* OCP barrier */
178	v = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
179				    OMAP4430_PRM_DEVICE_INST,
180				    OMAP4_PRM_RSTCTRL_OFFSET);
181}
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * OMAP4 PRM instance functions
  4 *
  5 * Copyright (C) 2009 Nokia Corporation
  6 * Copyright (C) 2011 Texas Instruments, Inc.
  7 * Paul Walmsley
 
 
 
 
  8 */
  9
 10#include <linux/kernel.h>
 11#include <linux/types.h>
 12#include <linux/errno.h>
 13#include <linux/err.h>
 14#include <linux/io.h>
 15
 16#include "iomap.h"
 17#include "common.h"
 18#include "prcm-common.h"
 19#include "prm44xx.h"
 20#include "prm54xx.h"
 21#include "prm7xx.h"
 22#include "prminst44xx.h"
 23#include "prm-regbits-44xx.h"
 24#include "prcm44xx.h"
 25#include "prcm43xx.h"
 26#include "prcm_mpu44xx.h"
 27#include "soc.h"
 28
 29static struct omap_domain_base _prm_bases[OMAP4_MAX_PRCM_PARTITIONS];
 30
 31static s32 prm_dev_inst = PRM_INSTANCE_UNKNOWN;
 32
 33/**
 34 * omap_prm_base_init - Populates the prm partitions
 35 *
 36 * Populates the base addresses of the _prm_bases
 37 * array used for read/write of prm module registers.
 38 */
 39void omap_prm_base_init(void)
 40{
 41	memcpy(&_prm_bases[OMAP4430_PRM_PARTITION], &prm_base,
 42	       sizeof(prm_base));
 43	memcpy(&_prm_bases[OMAP4430_PRCM_MPU_PARTITION], &prcm_mpu_base,
 44	       sizeof(prcm_mpu_base));
 45}
 46
 47s32 omap4_prmst_get_prm_dev_inst(void)
 48{
 49	return prm_dev_inst;
 50}
 51
 52void omap4_prminst_set_prm_dev_inst(s32 dev_inst)
 53{
 54	prm_dev_inst = dev_inst;
 55}
 56
 57/* Read a register in a PRM instance */
 58u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx)
 59{
 60	BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS ||
 61	       part == OMAP4430_INVALID_PRCM_PARTITION ||
 62	       !_prm_bases[part].va);
 63	return readl_relaxed(_prm_bases[part].va + inst + idx);
 64}
 65
 66/* Write into a register in a PRM instance */
 67void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx)
 68{
 69	BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS ||
 70	       part == OMAP4430_INVALID_PRCM_PARTITION ||
 71	       !_prm_bases[part].va);
 72	writel_relaxed(val, _prm_bases[part].va + inst + idx);
 73}
 74
 75/* Read-modify-write a register in PRM. Caller must lock */
 76u32 omap4_prminst_rmw_inst_reg_bits(u32 mask, u32 bits, u8 part, s16 inst,
 77				    u16 idx)
 78{
 79	u32 v;
 80
 81	v = omap4_prminst_read_inst_reg(part, inst, idx);
 82	v &= ~mask;
 83	v |= bits;
 84	omap4_prminst_write_inst_reg(v, part, inst, idx);
 85
 86	return v;
 87}
 88
 
 
 
 
 
 
 89/**
 90 * omap4_prminst_is_hardreset_asserted - read the HW reset line state of
 91 * submodules contained in the hwmod module
 92 * @rstctrl_reg: RM_RSTCTRL register address for this module
 93 * @shift: register bit shift corresponding to the reset line to check
 94 *
 95 * Returns 1 if the (sub)module hardreset line is currently asserted,
 96 * 0 if the (sub)module hardreset line is not currently asserted, or
 97 * -EINVAL upon parameter error.
 98 */
 99int omap4_prminst_is_hardreset_asserted(u8 shift, u8 part, s16 inst,
100					u16 rstctrl_offs)
101{
102	u32 v;
103
104	v = omap4_prminst_read_inst_reg(part, inst, rstctrl_offs);
105	v &= 1 << shift;
106	v >>= shift;
107
108	return v;
109}
110
111/**
112 * omap4_prminst_assert_hardreset - assert the HW reset line of a submodule
113 * @rstctrl_reg: RM_RSTCTRL register address for this module
114 * @shift: register bit shift corresponding to the reset line to assert
115 *
116 * Some IPs like dsp, ipu or iva contain processors that require an HW
117 * reset line to be asserted / deasserted in order to fully enable the
118 * IP.  These modules may have multiple hard-reset lines that reset
119 * different 'submodules' inside the IP block.  This function will
120 * place the submodule into reset.  Returns 0 upon success or -EINVAL
121 * upon an argument error.
122 */
123int omap4_prminst_assert_hardreset(u8 shift, u8 part, s16 inst,
124				   u16 rstctrl_offs)
125{
126	u32 mask = 1 << shift;
127
128	omap4_prminst_rmw_inst_reg_bits(mask, mask, part, inst, rstctrl_offs);
129
130	return 0;
131}
132
133/**
134 * omap4_prminst_deassert_hardreset - deassert a submodule hardreset line and
135 * wait
 
136 * @shift: register bit shift corresponding to the reset line to deassert
137 * @st_shift: status bit offset corresponding to the reset line
138 * @part: PRM partition
139 * @inst: PRM instance offset
140 * @rstctrl_offs: reset register offset
141 * @rstst_offs: reset status register offset
142 *
143 * Some IPs like dsp, ipu or iva contain processors that require an HW
144 * reset line to be asserted / deasserted in order to fully enable the
145 * IP.  These modules may have multiple hard-reset lines that reset
146 * different 'submodules' inside the IP block.  This function will
147 * take the submodule out of reset and wait until the PRCM indicates
148 * that the reset has completed before returning.  Returns 0 upon success or
149 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
150 * of reset, or -EBUSY if the submodule did not exit reset promptly.
151 */
152int omap4_prminst_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 inst,
153				     u16 rstctrl_offs, u16 rstst_offs)
154{
155	int c;
156	u32 mask = 1 << shift;
157	u32 st_mask = 1 << st_shift;
158
159	/* Check the current status to avoid de-asserting the line twice */
160	if (omap4_prminst_is_hardreset_asserted(shift, part, inst,
161						rstctrl_offs) == 0)
162		return -EEXIST;
163
164	/* Clear the reset status by writing 1 to the status bit */
165	omap4_prminst_rmw_inst_reg_bits(0xffffffff, st_mask, part, inst,
166					rstst_offs);
167	/* de-assert the reset control line */
168	omap4_prminst_rmw_inst_reg_bits(mask, 0, part, inst, rstctrl_offs);
169	/* wait the status to be set */
170	omap_test_timeout(omap4_prminst_is_hardreset_asserted(st_shift, part,
171							      inst, rstst_offs),
172			  MAX_MODULE_HARDRESET_WAIT, c);
173
174	return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;
175}
176
177
178void omap4_prminst_global_warm_sw_reset(void)
179{
180	u32 v;
181	s32 inst = omap4_prmst_get_prm_dev_inst();
182
183	if (inst == PRM_INSTANCE_UNKNOWN)
184		return;
185
186	v = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION, inst,
187					OMAP4_PRM_RSTCTRL_OFFSET);
188	v |= OMAP4430_RST_GLOBAL_WARM_SW_MASK;
189	omap4_prminst_write_inst_reg(v, OMAP4430_PRM_PARTITION,
190				 inst, OMAP4_PRM_RSTCTRL_OFFSET);
 
191
192	/* OCP barrier */
193	v = omap4_prminst_read_inst_reg(OMAP4430_PRM_PARTITION,
194				    inst, OMAP4_PRM_RSTCTRL_OFFSET);
 
195}