1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * linux/drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c
5 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
9 #include <linux/delay.h>
10 #include <linux/err.h>
11 #include <linux/firmware.h>
12 #include <linux/jiffies.h>
13 #include <linux/sched.h>
14 #include "s5p_mfc_cmd.h"
15 #include "s5p_mfc_common.h"
16 #include "s5p_mfc_debug.h"
17 #include "s5p_mfc_intr.h"
18 #include "s5p_mfc_opr.h"
19 #include "s5p_mfc_pm.h"
20 #include "s5p_mfc_ctrl.h"
22 /* Allocate memory for firmware */
23 int s5p_mfc_alloc_firmware(struct s5p_mfc_dev
*dev
)
25 struct s5p_mfc_priv_buf
*fw_buf
= &dev
->fw_buf
;
28 fw_buf
->size
= dev
->variant
->buf_size
->fw
;
31 mfc_err("Attempting to allocate firmware when it seems that it is already loaded\n");
35 err
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &dev
->fw_buf
);
37 mfc_err("Allocating bitprocessor buffer failed\n");
45 int s5p_mfc_load_firmware(struct s5p_mfc_dev
*dev
)
47 struct firmware
*fw_blob
;
50 /* Firmware has to be present as a separate file or compiled
57 for (i
= MFC_FW_MAX_VERSIONS
- 1; i
>= 0; i
--) {
58 if (!dev
->variant
->fw_name
[i
])
60 err
= request_firmware((const struct firmware
**)&fw_blob
,
61 dev
->variant
->fw_name
[i
], &dev
->plat_dev
->dev
);
63 dev
->fw_ver
= (enum s5p_mfc_fw_ver
) i
;
69 mfc_err("Firmware is not present in the /lib/firmware directory nor compiled in kernel\n");
72 if (fw_blob
->size
> dev
->fw_buf
.size
) {
73 mfc_err("MFC firmware is too big to be loaded\n");
74 release_firmware(fw_blob
);
77 memcpy(dev
->fw_buf
.virt
, fw_blob
->data
, fw_blob
->size
);
79 dev
->fw_get_done
= true;
80 release_firmware(fw_blob
);
85 /* Release firmware memory */
86 int s5p_mfc_release_firmware(struct s5p_mfc_dev
*dev
)
88 /* Before calling this function one has to make sure
89 * that MFC is no longer processing */
90 s5p_mfc_release_priv_buf(dev
, &dev
->fw_buf
);
91 dev
->fw_get_done
= false;
95 static int s5p_mfc_bus_reset(struct s5p_mfc_dev
*dev
)
98 unsigned long timeout
;
101 mfc_write(dev
, 0x1, S5P_FIMV_MFC_BUS_RESET_CTRL
);
102 timeout
= jiffies
+ msecs_to_jiffies(MFC_BW_TIMEOUT
);
103 /* Check bus status */
105 if (time_after(jiffies
, timeout
)) {
106 mfc_err("Timeout while resetting MFC.\n");
109 status
= mfc_read(dev
, S5P_FIMV_MFC_BUS_RESET_CTRL
);
110 } while ((status
& 0x2) == 0);
114 /* Reset the device */
115 int s5p_mfc_reset(struct s5p_mfc_dev
*dev
)
117 unsigned int mc_status
;
118 unsigned long timeout
;
123 if (IS_MFCV6_PLUS(dev
)) {
124 /* Zero Initialization of MFC registers */
125 mfc_write(dev
, 0, S5P_FIMV_RISC2HOST_CMD_V6
);
126 mfc_write(dev
, 0, S5P_FIMV_HOST2RISC_CMD_V6
);
127 mfc_write(dev
, 0, S5P_FIMV_FW_VERSION_V6
);
129 for (i
= 0; i
< S5P_FIMV_REG_CLEAR_COUNT_V6
; i
++)
130 mfc_write(dev
, 0, S5P_FIMV_REG_CLEAR_BEGIN_V6
+ (i
*4));
132 /* check bus reset control before reset */
134 if (s5p_mfc_bus_reset(dev
))
137 * set RISC_ON to 0 during power_on & wake_up.
138 * V6 needs RISC_ON set to 0 during reset also.
140 if ((!dev
->risc_on
) || (!IS_MFCV7_PLUS(dev
)))
141 mfc_write(dev
, 0, S5P_FIMV_RISC_ON_V6
);
143 mfc_write(dev
, 0x1FFF, S5P_FIMV_MFC_RESET_V6
);
144 mfc_write(dev
, 0, S5P_FIMV_MFC_RESET_V6
);
148 mfc_write(dev
, 0x3f6, S5P_FIMV_SW_RESET
);
149 /* All reset except for MC */
150 mfc_write(dev
, 0x3e2, S5P_FIMV_SW_RESET
);
153 timeout
= jiffies
+ msecs_to_jiffies(MFC_BW_TIMEOUT
);
154 /* Check MC status */
156 if (time_after(jiffies
, timeout
)) {
157 mfc_err("Timeout while resetting MFC\n");
161 mc_status
= mfc_read(dev
, S5P_FIMV_MC_STATUS
);
163 } while (mc_status
& 0x3);
165 mfc_write(dev
, 0x0, S5P_FIMV_SW_RESET
);
166 mfc_write(dev
, 0x3fe, S5P_FIMV_SW_RESET
);
173 static inline void s5p_mfc_init_memctrl(struct s5p_mfc_dev
*dev
)
175 if (IS_MFCV6_PLUS(dev
)) {
176 mfc_write(dev
, dev
->dma_base
[BANK_L_CTX
],
177 S5P_FIMV_RISC_BASE_ADDRESS_V6
);
178 mfc_debug(2, "Base Address : %pad\n",
179 &dev
->dma_base
[BANK_L_CTX
]);
181 mfc_write(dev
, dev
->dma_base
[BANK_L_CTX
],
182 S5P_FIMV_MC_DRAMBASE_ADR_A
);
183 mfc_write(dev
, dev
->dma_base
[BANK_R_CTX
],
184 S5P_FIMV_MC_DRAMBASE_ADR_B
);
185 mfc_debug(2, "Bank1: %pad, Bank2: %pad\n",
186 &dev
->dma_base
[BANK_L_CTX
],
187 &dev
->dma_base
[BANK_R_CTX
]);
191 static inline void s5p_mfc_clear_cmds(struct s5p_mfc_dev
*dev
)
193 if (IS_MFCV6_PLUS(dev
)) {
194 /* Zero initialization should be done before RESET.
195 * Nothing to do here. */
197 mfc_write(dev
, 0xffffffff, S5P_FIMV_SI_CH0_INST_ID
);
198 mfc_write(dev
, 0xffffffff, S5P_FIMV_SI_CH1_INST_ID
);
199 mfc_write(dev
, 0, S5P_FIMV_RISC2HOST_CMD
);
200 mfc_write(dev
, 0, S5P_FIMV_HOST2RISC_CMD
);
204 /* Initialize hardware */
205 int s5p_mfc_init_hw(struct s5p_mfc_dev
*dev
)
211 if (!dev
->fw_buf
.virt
) {
212 mfc_err("Firmware memory is not allocated.\n");
217 mfc_debug(2, "MFC reset..\n");
220 ret
= s5p_mfc_reset(dev
);
222 mfc_err("Failed to reset MFC - timeout\n");
225 mfc_debug(2, "Done MFC reset..\n");
226 /* 1. Set DRAM base Addr */
227 s5p_mfc_init_memctrl(dev
);
228 /* 2. Initialize registers of channel I/F */
229 s5p_mfc_clear_cmds(dev
);
230 /* 3. Release reset signal to the RISC */
231 s5p_mfc_clean_dev_int_flags(dev
);
232 if (IS_MFCV6_PLUS(dev
)) {
234 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
237 mfc_write(dev
, 0x3ff, S5P_FIMV_SW_RESET
);
240 mfc_write(dev
, 0x0, S5P_FIMV_MFC_CLOCK_OFF_V10
);
242 mfc_debug(2, "Will now wait for completion of firmware transfer\n");
243 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_FW_STATUS_RET
)) {
244 mfc_err("Failed to load firmware\n");
249 s5p_mfc_clean_dev_int_flags(dev
);
250 /* 4. Initialize firmware */
251 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, sys_init_cmd
, dev
);
253 mfc_err("Failed to send command to MFC - timeout\n");
258 mfc_debug(2, "Ok, now will wait for completion of hardware init\n");
259 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_SYS_INIT_RET
)) {
260 mfc_err("Failed to init hardware\n");
266 if (dev
->int_err
!= 0 || dev
->int_type
!=
267 S5P_MFC_R2H_CMD_SYS_INIT_RET
) {
269 mfc_err("Failed to init firmware - error: %d int: %d\n",
270 dev
->int_err
, dev
->int_type
);
275 if (IS_MFCV6_PLUS(dev
))
276 ver
= mfc_read(dev
, S5P_FIMV_FW_VERSION_V6
);
278 ver
= mfc_read(dev
, S5P_FIMV_FW_VERSION
);
280 mfc_debug(2, "MFC F/W version : %02xyy, %02xmm, %02xdd\n",
281 (ver
>> 16) & 0xFF, (ver
>> 8) & 0xFF, ver
& 0xFF);
288 /* Deinitialize hardware */
289 void s5p_mfc_deinit_hw(struct s5p_mfc_dev
*dev
)
294 s5p_mfc_hw_call(dev
->mfc_ops
, release_dev_context_buffer
, dev
);
299 int s5p_mfc_sleep(struct s5p_mfc_dev
*dev
)
305 s5p_mfc_clean_dev_int_flags(dev
);
306 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, sleep_cmd
, dev
);
308 mfc_err("Failed to send command to MFC - timeout\n");
311 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_SLEEP_RET
)) {
312 mfc_err("Failed to sleep\n");
317 if (dev
->int_err
!= 0 || dev
->int_type
!=
318 S5P_MFC_R2H_CMD_SLEEP_RET
) {
320 mfc_err("Failed to sleep - error: %d int: %d\n", dev
->int_err
,
328 static int s5p_mfc_v8_wait_wakeup(struct s5p_mfc_dev
*dev
)
332 /* Release reset signal to the RISC */
334 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
336 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_FW_STATUS_RET
)) {
337 mfc_err("Failed to reset MFCV8\n");
340 mfc_debug(2, "Write command to wakeup MFCV8\n");
341 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, wakeup_cmd
, dev
);
343 mfc_err("Failed to send command to MFCV8 - timeout\n");
347 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_WAKEUP_RET
)) {
348 mfc_err("Failed to wakeup MFC\n");
354 static int s5p_mfc_wait_wakeup(struct s5p_mfc_dev
*dev
)
358 /* Send MFC wakeup command */
359 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, wakeup_cmd
, dev
);
361 mfc_err("Failed to send command to MFC - timeout\n");
365 /* Release reset signal to the RISC */
366 if (IS_MFCV6_PLUS(dev
)) {
368 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
370 mfc_write(dev
, 0x3ff, S5P_FIMV_SW_RESET
);
373 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_WAKEUP_RET
)) {
374 mfc_err("Failed to wakeup MFC\n");
380 int s5p_mfc_wakeup(struct s5p_mfc_dev
*dev
)
386 mfc_debug(2, "MFC reset..\n");
389 ret
= s5p_mfc_reset(dev
);
391 mfc_err("Failed to reset MFC - timeout\n");
395 mfc_debug(2, "Done MFC reset..\n");
396 /* 1. Set DRAM base Addr */
397 s5p_mfc_init_memctrl(dev
);
398 /* 2. Initialize registers of channel I/F */
399 s5p_mfc_clear_cmds(dev
);
400 s5p_mfc_clean_dev_int_flags(dev
);
401 /* 3. Send MFC wakeup command and wait for completion*/
402 if (IS_MFCV8_PLUS(dev
))
403 ret
= s5p_mfc_v8_wait_wakeup(dev
);
405 ret
= s5p_mfc_wait_wakeup(dev
);
412 if (dev
->int_err
!= 0 || dev
->int_type
!=
413 S5P_MFC_R2H_CMD_WAKEUP_RET
) {
415 mfc_err("Failed to wakeup - error: %d int: %d\n", dev
->int_err
,
423 int s5p_mfc_open_mfc_inst(struct s5p_mfc_dev
*dev
, struct s5p_mfc_ctx
*ctx
)
427 ret
= s5p_mfc_hw_call(dev
->mfc_ops
, alloc_instance_buffer
, ctx
);
429 mfc_err("Failed allocating instance buffer\n");
433 if (ctx
->type
== MFCINST_DECODER
) {
434 ret
= s5p_mfc_hw_call(dev
->mfc_ops
,
435 alloc_dec_temp_buffers
, ctx
);
437 mfc_err("Failed allocating temporary buffers\n");
438 goto err_free_inst_buf
;
442 set_work_bit_irqsave(ctx
);
443 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
444 if (s5p_mfc_wait_for_done_ctx(ctx
,
445 S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET
, 0)) {
446 /* Error or timeout */
447 mfc_err("Error getting instance from hardware\n");
449 goto err_free_desc_buf
;
452 mfc_debug(2, "Got instance number: %d\n", ctx
->inst_no
);
456 if (ctx
->type
== MFCINST_DECODER
)
457 s5p_mfc_hw_call(dev
->mfc_ops
, release_dec_desc_buffer
, ctx
);
459 s5p_mfc_hw_call(dev
->mfc_ops
, release_instance_buffer
, ctx
);
464 void s5p_mfc_close_mfc_inst(struct s5p_mfc_dev
*dev
, struct s5p_mfc_ctx
*ctx
)
466 ctx
->state
= MFCINST_RETURN_INST
;
467 set_work_bit_irqsave(ctx
);
468 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
469 /* Wait until instance is returned or timeout occurred */
470 if (s5p_mfc_wait_for_done_ctx(ctx
,
471 S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET
, 0))
472 mfc_err("Err returning instance\n");
475 s5p_mfc_hw_call(dev
->mfc_ops
, release_codec_buffers
, ctx
);
476 s5p_mfc_hw_call(dev
->mfc_ops
, release_instance_buffer
, ctx
);
477 if (ctx
->type
== MFCINST_DECODER
)
478 s5p_mfc_hw_call(dev
->mfc_ops
, release_dec_desc_buffer
, ctx
);
480 ctx
->inst_no
= MFC_NO_INSTANCE_SET
;
481 ctx
->state
= MFCINST_FREE
;