1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Zoran ZR36050 basic configuration functions
5 * Copyright (C) 2001 Wolfgang Scherr <scherr@net4you.at>
8 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/slab.h>
11 #include <linux/delay.h>
13 #include <linux/types.h>
14 #include <linux/wait.h>
16 /* I/O commands, error codes */
19 /* headerfile of this module */
23 #include "videocodec.h"
26 * it doesn't make sense to have more than 20 or so,
27 * just to prevent some unwanted loops
31 /* amount of chips attached via this driver */
32 static int zr36050_codecs
;
35 * Local hardware I/O functions:
37 * read/write via codec layer (registers are located in the master device)
40 /* read and write functions */
41 static u8
zr36050_read(struct zr36050
*ptr
, u16 reg
)
43 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
46 /* just in case something is wrong... */
47 if (ptr
->codec
->master_data
->readreg
)
48 value
= (ptr
->codec
->master_data
->readreg(ptr
->codec
, reg
)) & 0xFF;
50 zrdev_err(zr
, "%s: invalid I/O setup, nothing read!\n", ptr
->name
);
52 zrdev_dbg(zr
, "%s: reading from 0x%04x: %02x\n", ptr
->name
, reg
, value
);
57 static void zr36050_write(struct zr36050
*ptr
, u16 reg
, u8 value
)
59 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
61 zrdev_dbg(zr
, "%s: writing 0x%02x to 0x%04x\n", ptr
->name
, value
, reg
);
63 /* just in case something is wrong... */
64 if (ptr
->codec
->master_data
->writereg
)
65 ptr
->codec
->master_data
->writereg(ptr
->codec
, reg
, value
);
67 zrdev_err(zr
, "%s: invalid I/O setup, nothing written!\n",
71 /* status is kept in datastructure */
72 static u8
zr36050_read_status1(struct zr36050
*ptr
)
74 ptr
->status1
= zr36050_read(ptr
, ZR050_STATUS_1
);
80 /* scale factor is kept in datastructure */
81 static u16
zr36050_read_scalefactor(struct zr36050
*ptr
)
83 ptr
->scalefact
= (zr36050_read(ptr
, ZR050_SF_HI
) << 8) |
84 (zr36050_read(ptr
, ZR050_SF_LO
) & 0xFF);
86 /* leave 0 selected for an eventually GO from master */
88 return ptr
->scalefact
;
92 * Local helper function:
94 * wait if codec is ready to proceed (end of processing) or time is over
97 static void zr36050_wait_end(struct zr36050
*ptr
)
99 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
102 while (!(zr36050_read_status1(ptr
) & 0x4)) {
104 if (i
++ > 200000) { // 200ms, there is for sure something wrong!!!
106 "%s: timeout at wait_end (last status: 0x%02x)\n",
107 ptr
->name
, ptr
->status1
);
114 * Local helper function: basic test of "connectivity", writes/reads
115 * to/from memory the SOF marker
118 static int zr36050_basic_test(struct zr36050
*ptr
)
120 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
122 zr36050_write(ptr
, ZR050_SOF_IDX
, 0x00);
123 zr36050_write(ptr
, ZR050_SOF_IDX
+ 1, 0x00);
124 if ((zr36050_read(ptr
, ZR050_SOF_IDX
) |
125 zr36050_read(ptr
, ZR050_SOF_IDX
+ 1)) != 0x0000) {
127 "%s: attach failed, can't connect to jpeg processor!\n",
131 zr36050_write(ptr
, ZR050_SOF_IDX
, 0xff);
132 zr36050_write(ptr
, ZR050_SOF_IDX
+ 1, 0xc0);
133 if (((zr36050_read(ptr
, ZR050_SOF_IDX
) << 8) |
134 zr36050_read(ptr
, ZR050_SOF_IDX
+ 1)) != 0xffc0) {
136 "%s: attach failed, can't connect to jpeg processor!\n",
141 zr36050_wait_end(ptr
);
142 if ((ptr
->status1
& 0x4) == 0) {
144 "%s: attach failed, jpeg processor failed (end flag)!\n",
149 return 0; /* looks good! */
152 /* Local helper function: simple loop for pushing the init datasets */
154 static int zr36050_pushit(struct zr36050
*ptr
, u16 startreg
, u16 len
, const char *data
)
156 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
159 zrdev_dbg(zr
, "%s: write data block to 0x%04x (len=%d)\n", ptr
->name
,
162 zr36050_write(ptr
, startreg
++, data
[i
++]);
170 * jpeg baseline setup data (you find it on lots places in internet, or just
171 * extract it from any regular .jpg image...)
173 * Could be variable, but until it's not needed it they are just fixed to save
174 * memory. Otherwise expand zr36050 structure with arrays, push the values to
175 * it and initialize from there, as e.g. the linux zr36057/60 driver does it.
178 static const char zr36050_dqt
[0x86] = {
179 0xff, 0xdb, //Marker: DQT
180 0x00, 0x84, //Length: 2*65+2
181 0x00, //Pq,Tq first table
182 0x10, 0x0b, 0x0c, 0x0e, 0x0c, 0x0a, 0x10, 0x0e,
183 0x0d, 0x0e, 0x12, 0x11, 0x10, 0x13, 0x18, 0x28,
184 0x1a, 0x18, 0x16, 0x16, 0x18, 0x31, 0x23, 0x25,
185 0x1d, 0x28, 0x3a, 0x33, 0x3d, 0x3c, 0x39, 0x33,
186 0x38, 0x37, 0x40, 0x48, 0x5c, 0x4e, 0x40, 0x44,
187 0x57, 0x45, 0x37, 0x38, 0x50, 0x6d, 0x51, 0x57,
188 0x5f, 0x62, 0x67, 0x68, 0x67, 0x3e, 0x4d, 0x71,
189 0x79, 0x70, 0x64, 0x78, 0x5c, 0x65, 0x67, 0x63,
190 0x01, //Pq,Tq second table
191 0x11, 0x12, 0x12, 0x18, 0x15, 0x18, 0x2f, 0x1a,
192 0x1a, 0x2f, 0x63, 0x42, 0x38, 0x42, 0x63, 0x63,
193 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
194 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
195 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
196 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
197 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
198 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63
201 static const char zr36050_dht
[0x1a4] = {
202 0xff, 0xc4, //Marker: DHT
203 0x01, 0xa2, //Length: 2*AC, 2*DC
204 0x00, //DC first table
205 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01,
206 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
207 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
208 0x01, //DC second table
209 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
210 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
211 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B,
212 0x10, //AC first table
213 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03,
214 0x05, 0x05, 0x04, 0x04, 0x00, 0x00,
215 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11,
216 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61,
217 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1,
218 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24,
219 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17,
220 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34,
221 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44,
222 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56,
223 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66,
224 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,
225 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88,
226 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99,
227 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8,
228 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9,
229 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8,
230 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9,
231 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,
232 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7,
234 0x11, //AC second table
235 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04,
236 0x07, 0x05, 0x04, 0x04, 0x00, 0x01,
237 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04,
238 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71,
239 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91,
240 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62,
241 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25,
242 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A,
243 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44,
244 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56,
245 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66,
246 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78,
247 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
248 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98,
249 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7,
250 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8,
251 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7,
252 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8,
253 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7,
254 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8,
258 /* jpeg baseline setup, this is just fixed in this driver (YUV pictures) */
259 #define NO_OF_COMPONENTS 0x3 //Y,U,V
260 #define BASELINE_PRECISION 0x8 //MCU size (?)
261 static const char zr36050_tq
[8] = { 0, 1, 1, 0, 0, 0, 0, 0 }; //table idx's QT
262 static const char zr36050_td
[8] = { 0, 1, 1, 0, 0, 0, 0, 0 }; //table idx's DC
263 static const char zr36050_ta
[8] = { 0, 1, 1, 0, 0, 0, 0, 0 }; //table idx's AC
265 /* horizontal 422 decimation setup (maybe we support 411 or so later, too) */
266 static const char zr36050_decimation_h
[8] = { 2, 1, 1, 0, 0, 0, 0, 0 };
267 static const char zr36050_decimation_v
[8] = { 1, 1, 1, 0, 0, 0, 0, 0 };
270 * Local helper functions:
272 * calculation and setup of parameter-dependent JPEG baseline segments
273 * (needed for compression only)
276 /* ------------------------------------------------------------------------- */
279 * SOF (start of frame) segment depends on width, height and sampling ratio
280 * of each color component
282 static int zr36050_set_sof(struct zr36050
*ptr
)
284 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
285 char sof_data
[34]; // max. size of register set
288 zrdev_dbg(zr
, "%s: write SOF (%dx%d, %d components)\n", ptr
->name
,
289 ptr
->width
, ptr
->height
, NO_OF_COMPONENTS
);
293 sof_data
[3] = (3 * NO_OF_COMPONENTS
) + 8;
294 sof_data
[4] = BASELINE_PRECISION
; // only '8' possible with zr36050
295 sof_data
[5] = (ptr
->height
) >> 8;
296 sof_data
[6] = (ptr
->height
) & 0xff;
297 sof_data
[7] = (ptr
->width
) >> 8;
298 sof_data
[8] = (ptr
->width
) & 0xff;
299 sof_data
[9] = NO_OF_COMPONENTS
;
300 for (i
= 0; i
< NO_OF_COMPONENTS
; i
++) {
301 sof_data
[10 + (i
* 3)] = i
; // index identifier
302 sof_data
[11 + (i
* 3)] = (ptr
->h_samp_ratio
[i
] << 4) |
303 (ptr
->v_samp_ratio
[i
]); // sampling ratios
304 sof_data
[12 + (i
* 3)] = zr36050_tq
[i
]; // Q table selection
306 return zr36050_pushit(ptr
, ZR050_SOF_IDX
,
307 (3 * NO_OF_COMPONENTS
) + 10, sof_data
);
310 /* ------------------------------------------------------------------------- */
313 * SOS (start of scan) segment depends on the used scan components
314 * of each color component
317 static int zr36050_set_sos(struct zr36050
*ptr
)
319 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
320 char sos_data
[16]; // max. size of register set
323 zrdev_dbg(zr
, "%s: write SOS\n", ptr
->name
);
327 sos_data
[3] = 2 + 1 + (2 * NO_OF_COMPONENTS
) + 3;
328 sos_data
[4] = NO_OF_COMPONENTS
;
329 for (i
= 0; i
< NO_OF_COMPONENTS
; i
++) {
330 sos_data
[5 + (i
* 2)] = i
; // index
331 sos_data
[6 + (i
* 2)] = (zr36050_td
[i
] << 4) | zr36050_ta
[i
]; // AC/DC tbl.sel.
333 sos_data
[2 + 1 + (2 * NO_OF_COMPONENTS
) + 2] = 00; // scan start
334 sos_data
[2 + 1 + (2 * NO_OF_COMPONENTS
) + 3] = 0x3F;
335 sos_data
[2 + 1 + (2 * NO_OF_COMPONENTS
) + 4] = 00;
336 return zr36050_pushit(ptr
, ZR050_SOS1_IDX
,
337 4 + 1 + (2 * NO_OF_COMPONENTS
) + 3,
341 /* ------------------------------------------------------------------------- */
343 /* DRI (define restart interval) */
345 static int zr36050_set_dri(struct zr36050
*ptr
)
347 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
348 char dri_data
[6]; // max. size of register set
350 zrdev_dbg(zr
, "%s: write DRI\n", ptr
->name
);
355 dri_data
[4] = ptr
->dri
>> 8;
356 dri_data
[5] = ptr
->dri
& 0xff;
357 return zr36050_pushit(ptr
, ZR050_DRI_IDX
, 6, dri_data
);
363 * Setup compression/decompression of Zoran's JPEG processor
364 * ( see also zoran 36050 manual )
366 * ... sorry for the spaghetti code ...
368 static void zr36050_init(struct zr36050
*ptr
)
372 struct zoran
*zr
= videocodec_to_zoran(ptr
->codec
);
374 if (ptr
->mode
== CODEC_DO_COMPRESSION
) {
375 zrdev_dbg(zr
, "%s: COMPRESSION SETUP\n", ptr
->name
);
377 /* 050 communicates with 057 in master mode */
378 zr36050_write(ptr
, ZR050_HARDWARE
, ZR050_HW_MSTR
);
380 /* encoding table preload for compression */
381 zr36050_write(ptr
, ZR050_MODE
,
382 ZR050_MO_COMP
| ZR050_MO_TLM
);
383 zr36050_write(ptr
, ZR050_OPTIONS
, 0);
385 /* disable all IRQs */
386 zr36050_write(ptr
, ZR050_INT_REQ_0
, 0);
387 zr36050_write(ptr
, ZR050_INT_REQ_1
, 3); // low 2 bits always 1
389 /* volume control settings */
390 /*zr36050_write(ptr, ZR050_MBCV, ptr->max_block_vol);*/
391 zr36050_write(ptr
, ZR050_SF_HI
, ptr
->scalefact
>> 8);
392 zr36050_write(ptr
, ZR050_SF_LO
, ptr
->scalefact
& 0xff);
394 zr36050_write(ptr
, ZR050_AF_HI
, 0xff);
395 zr36050_write(ptr
, ZR050_AF_M
, 0xff);
396 zr36050_write(ptr
, ZR050_AF_LO
, 0xff);
398 /* setup the variable jpeg tables */
399 sum
+= zr36050_set_sof(ptr
);
400 sum
+= zr36050_set_sos(ptr
);
401 sum
+= zr36050_set_dri(ptr
);
404 * setup the fixed jpeg tables - maybe variable, though -
405 * (see table init section above)
407 zrdev_dbg(zr
, "%s: write DQT, DHT, APP\n", ptr
->name
);
408 sum
+= zr36050_pushit(ptr
, ZR050_DQT_IDX
,
409 sizeof(zr36050_dqt
), zr36050_dqt
);
410 sum
+= zr36050_pushit(ptr
, ZR050_DHT_IDX
,
411 sizeof(zr36050_dht
), zr36050_dht
);
412 zr36050_write(ptr
, ZR050_APP_IDX
, 0xff);
413 zr36050_write(ptr
, ZR050_APP_IDX
+ 1, 0xe0 + ptr
->app
.appn
);
414 zr36050_write(ptr
, ZR050_APP_IDX
+ 2, 0x00);
415 zr36050_write(ptr
, ZR050_APP_IDX
+ 3, ptr
->app
.len
+ 2);
416 sum
+= zr36050_pushit(ptr
, ZR050_APP_IDX
+ 4, 60,
418 zr36050_write(ptr
, ZR050_COM_IDX
, 0xff);
419 zr36050_write(ptr
, ZR050_COM_IDX
+ 1, 0xfe);
420 zr36050_write(ptr
, ZR050_COM_IDX
+ 2, 0x00);
421 zr36050_write(ptr
, ZR050_COM_IDX
+ 3, ptr
->com
.len
+ 2);
422 sum
+= zr36050_pushit(ptr
, ZR050_COM_IDX
+ 4, 60,
425 /* do the internal huffman table preload */
426 zr36050_write(ptr
, ZR050_MARKERS_EN
, ZR050_ME_DHTI
);
428 zr36050_write(ptr
, ZR050_GO
, 1); // launch codec
429 zr36050_wait_end(ptr
);
430 zrdev_dbg(zr
, "%s: Status after table preload: 0x%02x\n",
431 ptr
->name
, ptr
->status1
);
433 if ((ptr
->status1
& 0x4) == 0) {
434 zrdev_err(zr
, "%s: init aborted!\n", ptr
->name
);
435 return; // something is wrong, its timed out!!!!
438 /* setup misc. data for compression (target code sizes) */
440 /* size of compressed code to reach without header data */
441 sum
= ptr
->real_code_vol
- sum
;
442 bitcnt
= sum
<< 3; /* need the size in bits */
446 "%s: code: csize=%d, tot=%d, bit=%ld, highbits=%ld\n",
447 ptr
->name
, sum
, ptr
->real_code_vol
, bitcnt
, tmp
);
448 zr36050_write(ptr
, ZR050_TCV_NET_HI
, tmp
>> 8);
449 zr36050_write(ptr
, ZR050_TCV_NET_MH
, tmp
& 0xff);
450 tmp
= bitcnt
& 0xffff;
451 zr36050_write(ptr
, ZR050_TCV_NET_ML
, tmp
>> 8);
452 zr36050_write(ptr
, ZR050_TCV_NET_LO
, tmp
& 0xff);
454 bitcnt
-= bitcnt
>> 7; // bits without stuffing
455 bitcnt
-= ((bitcnt
* 5) >> 6); // bits without eob
458 zrdev_dbg(zr
, "%s: code: nettobit=%ld, highnettobits=%ld\n",
459 ptr
->name
, bitcnt
, tmp
);
460 zr36050_write(ptr
, ZR050_TCV_DATA_HI
, tmp
>> 8);
461 zr36050_write(ptr
, ZR050_TCV_DATA_MH
, tmp
& 0xff);
462 tmp
= bitcnt
& 0xffff;
463 zr36050_write(ptr
, ZR050_TCV_DATA_ML
, tmp
>> 8);
464 zr36050_write(ptr
, ZR050_TCV_DATA_LO
, tmp
& 0xff);
466 /* compression setup with or without bitrate control */
467 zr36050_write(ptr
, ZR050_MODE
,
468 ZR050_MO_COMP
| ZR050_MO_PASS2
|
469 (ptr
->bitrate_ctrl
? ZR050_MO_BRC
: 0));
471 /* this headers seem to deliver "valid AVI" jpeg frames */
472 zr36050_write(ptr
, ZR050_MARKERS_EN
,
473 ZR050_ME_DQT
| ZR050_ME_DHT
|
474 ((ptr
->app
.len
> 0) ? ZR050_ME_APP
: 0) |
475 ((ptr
->com
.len
> 0) ? ZR050_ME_COM
: 0));
477 zrdev_dbg(zr
, "%s: EXPANSION SETUP\n", ptr
->name
);
479 /* 050 communicates with 055 in master mode */
480 zr36050_write(ptr
, ZR050_HARDWARE
,
481 ZR050_HW_MSTR
| ZR050_HW_CFIS_2_CLK
);
483 /* encoding table preload */
484 zr36050_write(ptr
, ZR050_MODE
, ZR050_MO_TLM
);
486 /* disable all IRQs */
487 zr36050_write(ptr
, ZR050_INT_REQ_0
, 0);
488 zr36050_write(ptr
, ZR050_INT_REQ_1
, 3); // low 2 bits always 1
490 zrdev_dbg(zr
, "%s: write DHT\n", ptr
->name
);
491 zr36050_pushit(ptr
, ZR050_DHT_IDX
, sizeof(zr36050_dht
),
494 /* do the internal huffman table preload */
495 zr36050_write(ptr
, ZR050_MARKERS_EN
, ZR050_ME_DHTI
);
497 zr36050_write(ptr
, ZR050_GO
, 1); // launch codec
498 zr36050_wait_end(ptr
);
499 zrdev_dbg(zr
, "%s: Status after table preload: 0x%02x\n",
500 ptr
->name
, ptr
->status1
);
502 if ((ptr
->status1
& 0x4) == 0) {
503 zrdev_err(zr
, "%s: init aborted!\n", ptr
->name
);
504 return; // something is wrong, its timed out!!!!
507 /* setup misc. data for expansion */
508 zr36050_write(ptr
, ZR050_MODE
, 0);
509 zr36050_write(ptr
, ZR050_MARKERS_EN
, 0);
512 /* adr on selected, to allow GO from master */
513 zr36050_read(ptr
, 0);
517 * CODEC API FUNCTIONS
519 * this functions are accessed by the master via the API structure
523 * set compression/expansion mode and launches codec -
524 * this should be the last call from the master before starting processing
526 static int zr36050_set_mode(struct videocodec
*codec
, int mode
)
528 struct zr36050
*ptr
= (struct zr36050
*)codec
->data
;
529 struct zoran
*zr
= videocodec_to_zoran(codec
);
531 zrdev_dbg(zr
, "%s: set_mode %d call\n", ptr
->name
, mode
);
533 if ((mode
!= CODEC_DO_EXPANSION
) && (mode
!= CODEC_DO_COMPRESSION
))
542 /* set picture size (norm is ignored as the codec doesn't know about it) */
543 static int zr36050_set_video(struct videocodec
*codec
, const struct tvnorm
*norm
,
544 struct vfe_settings
*cap
, struct vfe_polarity
*pol
)
546 struct zr36050
*ptr
= (struct zr36050
*)codec
->data
;
547 struct zoran
*zr
= videocodec_to_zoran(codec
);
550 zrdev_dbg(zr
, "%s: set_video %d.%d, %d/%d-%dx%d (0x%x) q%d call\n",
551 ptr
->name
, norm
->h_start
, norm
->v_start
,
552 cap
->x
, cap
->y
, cap
->width
, cap
->height
,
553 cap
->decimation
, cap
->quality
);
555 * trust the master driver that it knows what it does - so
556 * we allow invalid startx/y and norm for now ...
558 ptr
->width
= cap
->width
/ (cap
->decimation
& 0xff);
559 ptr
->height
= cap
->height
/ ((cap
->decimation
>> 8) & 0xff);
561 /* (KM) JPEG quality */
562 size
= ptr
->width
* ptr
->height
;
563 size
*= 16; /* size in bits */
564 /* apply quality setting */
565 size
= size
* cap
->quality
/ 200;
570 /* Maximum: 7/8 of code buffer */
571 if (size
> ptr
->total_code_vol
* 7)
572 size
= ptr
->total_code_vol
* 7;
574 ptr
->real_code_vol
= size
>> 3; /* in bytes */
577 * Set max_block_vol here (previously in zr36050_init, moved
578 * here for consistency with zr36060 code
580 zr36050_write(ptr
, ZR050_MBCV
, ptr
->max_block_vol
);
585 /* additional control functions */
586 static int zr36050_control(struct videocodec
*codec
, int type
, int size
, void *data
)
588 struct zr36050
*ptr
= (struct zr36050
*)codec
->data
;
589 struct zoran
*zr
= videocodec_to_zoran(codec
);
590 int *ival
= (int *)data
;
592 zrdev_dbg(zr
, "%s: control %d call with %d byte\n", ptr
->name
, type
,
596 case CODEC_G_STATUS
: /* get last status */
597 if (size
!= sizeof(int))
599 zr36050_read_status1(ptr
);
600 *ival
= ptr
->status1
;
603 case CODEC_G_CODEC_MODE
:
604 if (size
!= sizeof(int))
606 *ival
= CODEC_MODE_BJPG
;
609 case CODEC_S_CODEC_MODE
:
610 if (size
!= sizeof(int))
612 if (*ival
!= CODEC_MODE_BJPG
)
614 /* not needed, do nothing */
619 /* not needed, do nothing */
623 /* not available, give an error */
626 case CODEC_G_JPEG_TDS_BYTE
: /* get target volume in byte */
627 if (size
!= sizeof(int))
629 *ival
= ptr
->total_code_vol
;
632 case CODEC_S_JPEG_TDS_BYTE
: /* get target volume in byte */
633 if (size
!= sizeof(int))
635 ptr
->total_code_vol
= *ival
;
636 ptr
->real_code_vol
= (ptr
->total_code_vol
* 6) >> 3;
639 case CODEC_G_JPEG_SCALE
: /* get scaling factor */
640 if (size
!= sizeof(int))
642 *ival
= zr36050_read_scalefactor(ptr
);
645 case CODEC_S_JPEG_SCALE
: /* set scaling factor */
646 if (size
!= sizeof(int))
648 ptr
->scalefact
= *ival
;
651 case CODEC_G_JPEG_APP_DATA
: { /* get appn marker data */
652 struct jpeg_app_marker
*app
= data
;
654 if (size
!= sizeof(struct jpeg_app_marker
))
661 case CODEC_S_JPEG_APP_DATA
: { /* set appn marker data */
662 struct jpeg_app_marker
*app
= data
;
664 if (size
!= sizeof(struct jpeg_app_marker
))
671 case CODEC_G_JPEG_COM_DATA
: { /* get comment marker data */
672 struct jpeg_com_marker
*com
= data
;
674 if (size
!= sizeof(struct jpeg_com_marker
))
681 case CODEC_S_JPEG_COM_DATA
: { /* set comment marker data */
682 struct jpeg_com_marker
*com
= data
;
684 if (size
!= sizeof(struct jpeg_com_marker
))
698 /* Exit and unregister function: Deinitializes Zoran's JPEG processor */
700 static int zr36050_unset(struct videocodec
*codec
)
702 struct zr36050
*ptr
= codec
->data
;
703 struct zoran
*zr
= videocodec_to_zoran(codec
);
706 /* do wee need some codec deinit here, too ???? */
708 zrdev_dbg(zr
, "%s: finished codec #%d\n", ptr
->name
,
721 * Setup and registry function:
723 * Initializes Zoran's JPEG processor
725 * Also sets pixel size, average code size, mode (compr./decompr.)
726 * (the given size is determined by the processor with the video interface)
729 static int zr36050_setup(struct videocodec
*codec
)
732 struct zoran
*zr
= videocodec_to_zoran(codec
);
735 zrdev_dbg(zr
, "zr36050: initializing MJPEG subsystem #%d.\n",
738 if (zr36050_codecs
== MAX_CODECS
) {
740 "zr36050: Can't attach more codecs!\n");
744 ptr
= kzalloc(sizeof(*ptr
), GFP_KERNEL
);
749 snprintf(ptr
->name
, sizeof(ptr
->name
), "zr36050[%d]",
751 ptr
->num
= zr36050_codecs
++;
755 res
= zr36050_basic_test(ptr
);
757 zr36050_unset(codec
);
761 memcpy(ptr
->h_samp_ratio
, zr36050_decimation_h
, 8);
762 memcpy(ptr
->v_samp_ratio
, zr36050_decimation_v
, 8);
764 /* 0 or 1 - fixed file size flag (what is the difference?) */
765 ptr
->bitrate_ctrl
= 0;
766 ptr
->mode
= CODEC_DO_COMPRESSION
;
769 ptr
->total_code_vol
= 16000;
770 ptr
->max_block_vol
= 240;
771 ptr
->scalefact
= 0x100;
774 /* no app/com marker by default */
781 zrdev_info(zr
, "%s: codec attached and running\n",
787 static const struct videocodec zr36050_codec
= {
789 .magic
= 0L, // magic not used
791 CODEC_FLAG_JPEG
| CODEC_FLAG_HARDWARE
| CODEC_FLAG_ENCODER
|
793 .type
= CODEC_TYPE_ZR36050
,
794 .setup
= zr36050_setup
, // functionality
795 .unset
= zr36050_unset
,
796 .set_mode
= zr36050_set_mode
,
797 .set_video
= zr36050_set_video
,
798 .control
= zr36050_control
,
799 // others are not used
802 /* HOOK IN DRIVER AS KERNEL MODULE */
804 int zr36050_init_module(void)
807 return videocodec_register(&zr36050_codec
);
810 void zr36050_cleanup_module(void)
812 if (zr36050_codecs
) {
813 pr_debug("zr36050: something's wrong - %d codecs left somehow.\n",
816 videocodec_unregister(&zr36050_codec
);