.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2015 - 2016 Samsung Electronics Co., Ltd. |
---|
3 | 4 | * |
---|
.. | .. |
---|
8 | 9 | * |
---|
9 | 10 | * This module provides regmap for the Top SFR region and instantiates |
---|
10 | 11 | * devices for IP blocks like DMAC, I2S, UART. |
---|
11 | | - * |
---|
12 | | - * This program is free software; you can redistribute it and/or modify |
---|
13 | | - * it under the terms of the GNU General Public License version 2 and |
---|
14 | | - * only version 2 as published by the Free Software Foundation. |
---|
15 | 12 | */ |
---|
16 | 13 | |
---|
17 | 14 | #include <linux/clk.h> |
---|
.. | .. |
---|
82 | 79 | LPASS_INTR_SFR | LPASS_INTR_DMA | LPASS_INTR_I2S); |
---|
83 | 80 | |
---|
84 | 81 | regmap_write(lpass->top, SFR_LPASS_INTR_CPU_MASK, |
---|
85 | | - LPASS_INTR_SFR | LPASS_INTR_DMA | LPASS_INTR_I2S); |
---|
| 82 | + LPASS_INTR_SFR | LPASS_INTR_DMA | LPASS_INTR_I2S | |
---|
| 83 | + LPASS_INTR_UART); |
---|
86 | 84 | |
---|
87 | 85 | exynos_lpass_core_sw_reset(lpass, LPASS_I2S_SW_RESET); |
---|
88 | 86 | exynos_lpass_core_sw_reset(lpass, LPASS_DMA_SW_RESET); |
---|
89 | 87 | exynos_lpass_core_sw_reset(lpass, LPASS_MEM_SW_RESET); |
---|
| 88 | + exynos_lpass_core_sw_reset(lpass, LPASS_UART_SW_RESET); |
---|
90 | 89 | } |
---|
91 | 90 | |
---|
92 | 91 | static void exynos_lpass_disable(struct exynos_lpass *lpass) |
---|