2 * linux/drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c
4 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <linux/delay.h>
14 #include <linux/err.h>
15 #include <linux/firmware.h>
16 #include <linux/jiffies.h>
17 #include <linux/sched.h>
18 #include "s5p_mfc_cmd.h"
19 #include "s5p_mfc_common.h"
20 #include "s5p_mfc_debug.h"
21 #include "s5p_mfc_intr.h"
22 #include "s5p_mfc_opr.h"
23 #include "s5p_mfc_pm.h"
24 #include "s5p_mfc_ctrl.h"
26 /* Allocate memory for firmware */
27 int s5p_mfc_alloc_firmware(struct s5p_mfc_dev
*dev
)
29 struct s5p_mfc_priv_buf
*fw_buf
= &dev
->fw_buf
;
32 fw_buf
->size
= dev
->variant
->buf_size
->fw
;
35 mfc_err("Attempting to allocate firmware when it seems that it is already loaded\n");
39 err
= s5p_mfc_alloc_priv_buf(dev
, BANK_L_CTX
, &dev
->fw_buf
);
41 mfc_err("Allocating bitprocessor buffer failed\n");
49 int s5p_mfc_load_firmware(struct s5p_mfc_dev
*dev
)
51 struct firmware
*fw_blob
;
54 /* Firmare has to be present as a separate file or compiled
61 for (i
= MFC_FW_MAX_VERSIONS
- 1; i
>= 0; i
--) {
62 if (!dev
->variant
->fw_name
[i
])
64 err
= request_firmware((const struct firmware
**)&fw_blob
,
65 dev
->variant
->fw_name
[i
], &dev
->plat_dev
->dev
);
67 dev
->fw_ver
= (enum s5p_mfc_fw_ver
) i
;
73 mfc_err("Firmware is not present in the /lib/firmware directory nor compiled in kernel\n");
76 if (fw_blob
->size
> dev
->fw_buf
.size
) {
77 mfc_err("MFC firmware is too big to be loaded\n");
78 release_firmware(fw_blob
);
81 memcpy(dev
->fw_buf
.virt
, fw_blob
->data
, fw_blob
->size
);
83 dev
->fw_get_done
= true;
84 release_firmware(fw_blob
);
89 /* Release firmware memory */
90 int s5p_mfc_release_firmware(struct s5p_mfc_dev
*dev
)
92 /* Before calling this function one has to make sure
93 * that MFC is no longer processing */
94 s5p_mfc_release_priv_buf(dev
, &dev
->fw_buf
);
95 dev
->fw_get_done
= false;
99 static int s5p_mfc_bus_reset(struct s5p_mfc_dev
*dev
)
102 unsigned long timeout
;
105 mfc_write(dev
, 0x1, S5P_FIMV_MFC_BUS_RESET_CTRL
);
106 timeout
= jiffies
+ msecs_to_jiffies(MFC_BW_TIMEOUT
);
107 /* Check bus status */
109 if (time_after(jiffies
, timeout
)) {
110 mfc_err("Timeout while resetting MFC.\n");
113 status
= mfc_read(dev
, S5P_FIMV_MFC_BUS_RESET_CTRL
);
114 } while ((status
& 0x2) == 0);
118 /* Reset the device */
119 int s5p_mfc_reset(struct s5p_mfc_dev
*dev
)
121 unsigned int mc_status
;
122 unsigned long timeout
;
127 if (IS_MFCV6_PLUS(dev
)) {
128 /* Zero Initialization of MFC registers */
129 mfc_write(dev
, 0, S5P_FIMV_RISC2HOST_CMD_V6
);
130 mfc_write(dev
, 0, S5P_FIMV_HOST2RISC_CMD_V6
);
131 mfc_write(dev
, 0, S5P_FIMV_FW_VERSION_V6
);
133 for (i
= 0; i
< S5P_FIMV_REG_CLEAR_COUNT_V6
; i
++)
134 mfc_write(dev
, 0, S5P_FIMV_REG_CLEAR_BEGIN_V6
+ (i
*4));
136 /* check bus reset control before reset */
138 if (s5p_mfc_bus_reset(dev
))
141 * set RISC_ON to 0 during power_on & wake_up.
142 * V6 needs RISC_ON set to 0 during reset also.
144 if ((!dev
->risc_on
) || (!IS_MFCV7_PLUS(dev
)))
145 mfc_write(dev
, 0, S5P_FIMV_RISC_ON_V6
);
147 mfc_write(dev
, 0x1FFF, S5P_FIMV_MFC_RESET_V6
);
148 mfc_write(dev
, 0, S5P_FIMV_MFC_RESET_V6
);
152 mfc_write(dev
, 0x3f6, S5P_FIMV_SW_RESET
);
153 /* All reset except for MC */
154 mfc_write(dev
, 0x3e2, S5P_FIMV_SW_RESET
);
157 timeout
= jiffies
+ msecs_to_jiffies(MFC_BW_TIMEOUT
);
158 /* Check MC status */
160 if (time_after(jiffies
, timeout
)) {
161 mfc_err("Timeout while resetting MFC\n");
165 mc_status
= mfc_read(dev
, S5P_FIMV_MC_STATUS
);
167 } while (mc_status
& 0x3);
169 mfc_write(dev
, 0x0, S5P_FIMV_SW_RESET
);
170 mfc_write(dev
, 0x3fe, S5P_FIMV_SW_RESET
);
177 static inline void s5p_mfc_init_memctrl(struct s5p_mfc_dev
*dev
)
179 if (IS_MFCV6_PLUS(dev
)) {
180 mfc_write(dev
, dev
->dma_base
[BANK_L_CTX
],
181 S5P_FIMV_RISC_BASE_ADDRESS_V6
);
182 mfc_debug(2, "Base Address : %pad\n",
183 &dev
->dma_base
[BANK_L_CTX
]);
185 mfc_write(dev
, dev
->dma_base
[BANK_L_CTX
],
186 S5P_FIMV_MC_DRAMBASE_ADR_A
);
187 mfc_write(dev
, dev
->dma_base
[BANK_R_CTX
],
188 S5P_FIMV_MC_DRAMBASE_ADR_B
);
189 mfc_debug(2, "Bank1: %pad, Bank2: %pad\n",
190 &dev
->dma_base
[BANK_L_CTX
],
191 &dev
->dma_base
[BANK_R_CTX
]);
195 static inline void s5p_mfc_clear_cmds(struct s5p_mfc_dev
*dev
)
197 if (IS_MFCV6_PLUS(dev
)) {
198 /* Zero initialization should be done before RESET.
199 * Nothing to do here. */
201 mfc_write(dev
, 0xffffffff, S5P_FIMV_SI_CH0_INST_ID
);
202 mfc_write(dev
, 0xffffffff, S5P_FIMV_SI_CH1_INST_ID
);
203 mfc_write(dev
, 0, S5P_FIMV_RISC2HOST_CMD
);
204 mfc_write(dev
, 0, S5P_FIMV_HOST2RISC_CMD
);
208 /* Initialize hardware */
209 int s5p_mfc_init_hw(struct s5p_mfc_dev
*dev
)
215 if (!dev
->fw_buf
.virt
) {
216 mfc_err("Firmware memory is not allocated.\n");
221 mfc_debug(2, "MFC reset..\n");
224 ret
= s5p_mfc_reset(dev
);
226 mfc_err("Failed to reset MFC - timeout\n");
229 mfc_debug(2, "Done MFC reset..\n");
230 /* 1. Set DRAM base Addr */
231 s5p_mfc_init_memctrl(dev
);
232 /* 2. Initialize registers of channel I/F */
233 s5p_mfc_clear_cmds(dev
);
234 /* 3. Release reset signal to the RISC */
235 s5p_mfc_clean_dev_int_flags(dev
);
236 if (IS_MFCV6_PLUS(dev
)) {
238 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
241 mfc_write(dev
, 0x3ff, S5P_FIMV_SW_RESET
);
244 mfc_write(dev
, 0x0, S5P_FIMV_MFC_CLOCK_OFF_V10
);
246 mfc_debug(2, "Will now wait for completion of firmware transfer\n");
247 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_FW_STATUS_RET
)) {
248 mfc_err("Failed to load firmware\n");
253 s5p_mfc_clean_dev_int_flags(dev
);
254 /* 4. Initialize firmware */
255 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, sys_init_cmd
, dev
);
257 mfc_err("Failed to send command to MFC - timeout\n");
262 mfc_debug(2, "Ok, now will wait for completion of hardware init\n");
263 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_SYS_INIT_RET
)) {
264 mfc_err("Failed to init hardware\n");
270 if (dev
->int_err
!= 0 || dev
->int_type
!=
271 S5P_MFC_R2H_CMD_SYS_INIT_RET
) {
273 mfc_err("Failed to init firmware - error: %d int: %d\n",
274 dev
->int_err
, dev
->int_type
);
279 if (IS_MFCV6_PLUS(dev
))
280 ver
= mfc_read(dev
, S5P_FIMV_FW_VERSION_V6
);
282 ver
= mfc_read(dev
, S5P_FIMV_FW_VERSION
);
284 mfc_debug(2, "MFC F/W version : %02xyy, %02xmm, %02xdd\n",
285 (ver
>> 16) & 0xFF, (ver
>> 8) & 0xFF, ver
& 0xFF);
292 /* Deinitialize hardware */
293 void s5p_mfc_deinit_hw(struct s5p_mfc_dev
*dev
)
298 s5p_mfc_hw_call(dev
->mfc_ops
, release_dev_context_buffer
, dev
);
303 int s5p_mfc_sleep(struct s5p_mfc_dev
*dev
)
309 s5p_mfc_clean_dev_int_flags(dev
);
310 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, sleep_cmd
, dev
);
312 mfc_err("Failed to send command to MFC - timeout\n");
315 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_SLEEP_RET
)) {
316 mfc_err("Failed to sleep\n");
321 if (dev
->int_err
!= 0 || dev
->int_type
!=
322 S5P_MFC_R2H_CMD_SLEEP_RET
) {
324 mfc_err("Failed to sleep - error: %d int: %d\n", dev
->int_err
,
332 static int s5p_mfc_v8_wait_wakeup(struct s5p_mfc_dev
*dev
)
336 /* Release reset signal to the RISC */
338 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
340 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_FW_STATUS_RET
)) {
341 mfc_err("Failed to reset MFCV8\n");
344 mfc_debug(2, "Write command to wakeup MFCV8\n");
345 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, wakeup_cmd
, dev
);
347 mfc_err("Failed to send command to MFCV8 - timeout\n");
351 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_WAKEUP_RET
)) {
352 mfc_err("Failed to wakeup MFC\n");
358 static int s5p_mfc_wait_wakeup(struct s5p_mfc_dev
*dev
)
362 /* Send MFC wakeup command */
363 ret
= s5p_mfc_hw_call(dev
->mfc_cmds
, wakeup_cmd
, dev
);
365 mfc_err("Failed to send command to MFC - timeout\n");
369 /* Release reset signal to the RISC */
370 if (IS_MFCV6_PLUS(dev
)) {
372 mfc_write(dev
, 0x1, S5P_FIMV_RISC_ON_V6
);
374 mfc_write(dev
, 0x3ff, S5P_FIMV_SW_RESET
);
377 if (s5p_mfc_wait_for_done_dev(dev
, S5P_MFC_R2H_CMD_WAKEUP_RET
)) {
378 mfc_err("Failed to wakeup MFC\n");
384 int s5p_mfc_wakeup(struct s5p_mfc_dev
*dev
)
390 mfc_debug(2, "MFC reset..\n");
393 ret
= s5p_mfc_reset(dev
);
395 mfc_err("Failed to reset MFC - timeout\n");
399 mfc_debug(2, "Done MFC reset..\n");
400 /* 1. Set DRAM base Addr */
401 s5p_mfc_init_memctrl(dev
);
402 /* 2. Initialize registers of channel I/F */
403 s5p_mfc_clear_cmds(dev
);
404 s5p_mfc_clean_dev_int_flags(dev
);
405 /* 3. Send MFC wakeup command and wait for completion*/
406 if (IS_MFCV8_PLUS(dev
))
407 ret
= s5p_mfc_v8_wait_wakeup(dev
);
409 ret
= s5p_mfc_wait_wakeup(dev
);
416 if (dev
->int_err
!= 0 || dev
->int_type
!=
417 S5P_MFC_R2H_CMD_WAKEUP_RET
) {
419 mfc_err("Failed to wakeup - error: %d int: %d\n", dev
->int_err
,
427 int s5p_mfc_open_mfc_inst(struct s5p_mfc_dev
*dev
, struct s5p_mfc_ctx
*ctx
)
431 ret
= s5p_mfc_hw_call(dev
->mfc_ops
, alloc_instance_buffer
, ctx
);
433 mfc_err("Failed allocating instance buffer\n");
437 if (ctx
->type
== MFCINST_DECODER
) {
438 ret
= s5p_mfc_hw_call(dev
->mfc_ops
,
439 alloc_dec_temp_buffers
, ctx
);
441 mfc_err("Failed allocating temporary buffers\n");
442 goto err_free_inst_buf
;
446 set_work_bit_irqsave(ctx
);
447 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
448 if (s5p_mfc_wait_for_done_ctx(ctx
,
449 S5P_MFC_R2H_CMD_OPEN_INSTANCE_RET
, 0)) {
450 /* Error or timeout */
451 mfc_err("Error getting instance from hardware\n");
453 goto err_free_desc_buf
;
456 mfc_debug(2, "Got instance number: %d\n", ctx
->inst_no
);
460 if (ctx
->type
== MFCINST_DECODER
)
461 s5p_mfc_hw_call(dev
->mfc_ops
, release_dec_desc_buffer
, ctx
);
463 s5p_mfc_hw_call(dev
->mfc_ops
, release_instance_buffer
, ctx
);
468 void s5p_mfc_close_mfc_inst(struct s5p_mfc_dev
*dev
, struct s5p_mfc_ctx
*ctx
)
470 ctx
->state
= MFCINST_RETURN_INST
;
471 set_work_bit_irqsave(ctx
);
472 s5p_mfc_hw_call(dev
->mfc_ops
, try_run
, dev
);
473 /* Wait until instance is returned or timeout occurred */
474 if (s5p_mfc_wait_for_done_ctx(ctx
,
475 S5P_MFC_R2H_CMD_CLOSE_INSTANCE_RET
, 0))
476 mfc_err("Err returning instance\n");
479 s5p_mfc_hw_call(dev
->mfc_ops
, release_codec_buffers
, ctx
);
480 s5p_mfc_hw_call(dev
->mfc_ops
, release_instance_buffer
, ctx
);
481 if (ctx
->type
== MFCINST_DECODER
)
482 s5p_mfc_hw_call(dev
->mfc_ops
, release_dec_desc_buffer
, ctx
);
484 ctx
->inst_no
= MFC_NO_INSTANCE_SET
;
485 ctx
->state
= MFCINST_FREE
;