[media] mn88472: calculate the IF register values
authorBenjamin Larsson <benjamin@southpole.se>
Wed, 26 Nov 2014 21:51:46 +0000 (18:51 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 23 Dec 2014 16:46:02 +0000 (14:46 -0200)
Add xtal as a configuration parameter so it can be used
in the IF register value calculation.

Signed-off-by: Benjamin Larsson <benjamin@southpole.se>
Reviewed-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/dvb-frontends/mn88472.h
drivers/media/usb/dvb-usb-v2/rtl28xxu.c
drivers/staging/media/mn88472/mn88472.c
drivers/staging/media/mn88472/mn88472_priv.h

index da4558bce60fc4b825cf4e652061132715c4e926..e4e0b80d3091f93cd660e1822201817d11b64d77 100644 (file)
@@ -33,6 +33,12 @@ struct mn88472_config {
         * DVB frontend.
         */
        struct dvb_frontend **fe;
+
+       /*
+        * Xtal frequency.
+        * Hz
+        */
+       u32 xtal;
 };
 
 #endif
index 896a225ee01103042fbc26a0e9c1ed9d9a8355d9..73580f8d5a17c2d7d3cff59db713a0ccc31d9470 100644 (file)
@@ -852,6 +852,7 @@ static int rtl2832u_frontend_attach(struct dvb_usb_adapter *adap)
                        mn88472_config.fe = &adap->fe[1];
                        mn88472_config.i2c_wr_max = 22,
                        strlcpy(info.type, "mn88472", I2C_NAME_SIZE);
+                       mn88472_config.xtal = 20500000;
                        info.addr = 0x18;
                        info.platform_data = &mn88472_config;
                        request_module(info.type);
index 52de8f85d36ca04343b45ad8dfc69e8032e3e8e0..f648b58392c3ff3abbcce4a82505d8fa230c9d4b 100644 (file)
@@ -30,6 +30,7 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
        struct dtv_frontend_properties *c = &fe->dtv_property_cache;
        int ret, i;
        u32 if_frequency = 0;
+       u64 tmp;
        u8 delivery_system_val, if_val[3], bw_val[7], bw_val2;
 
        dev_dbg(&client->dev,
@@ -62,17 +63,14 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
        case SYS_DVBT2:
                if (c->bandwidth_hz <= 6000000) {
                        /* IF 3570000 Hz, BW 6000000 Hz */
-                       memcpy(if_val, "\x2c\x94\xdb", 3);
                        memcpy(bw_val, "\xbf\x55\x55\x15\x6b\x15\x6b", 7);
                        bw_val2 = 0x02;
                } else if (c->bandwidth_hz <= 7000000) {
                        /* IF 4570000 Hz, BW 7000000 Hz */
-                       memcpy(if_val, "\x39\x11\xbc", 3);
                        memcpy(bw_val, "\xa4\x00\x00\x0f\x2c\x0f\x2c", 7);
                        bw_val2 = 0x01;
                } else if (c->bandwidth_hz <= 8000000) {
                        /* IF 4570000 Hz, BW 8000000 Hz */
-                       memcpy(if_val, "\x39\x11\xbc", 3);
                        memcpy(bw_val, "\x8f\x80\x00\x08\xee\x08\xee", 7);
                        bw_val2 = 0x00;
                } else {
@@ -82,7 +80,6 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
                break;
        case SYS_DVBC_ANNEX_A:
                /* IF 5070000 Hz, BW 8000000 Hz */
-               memcpy(if_val, "\x3f\x50\x2c", 3);
                memcpy(bw_val, "\x8f\x80\x00\x08\xee\x08\xee", 7);
                bw_val2 = 0x00;
                break;
@@ -106,17 +103,12 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
                dev_dbg(&client->dev, "get_if_frequency=%d\n", if_frequency);
        }
 
-       switch (if_frequency) {
-       case 3570000:
-       case 4570000:
-       case 5070000:
-               break;
-       default:
-               dev_err(&client->dev, "IF frequency %d not supported\n",
-                               if_frequency);
-               ret = -EINVAL;
-               goto err;
-       }
+       /* Calculate IF registers ( (1<<24)*IF / Xtal ) */
+       tmp =  div_u64(if_frequency * (u64)(1<<24) + (dev->xtal / 2),
+                                  dev->xtal);
+       if_val[0] = ((tmp >> 16) & 0xff);
+       if_val[1] = ((tmp >>  8) & 0xff);
+       if_val[2] = ((tmp >>  0) & 0xff);
 
        ret = regmap_write(dev->regmap[2], 0xfb, 0x13);
        ret = regmap_write(dev->regmap[2], 0xef, 0x13);
@@ -411,6 +403,7 @@ static int mn88472_probe(struct i2c_client *client,
        }
 
        dev->i2c_wr_max = config->i2c_wr_max;
+       dev->xtal = config->xtal;
        dev->client[0] = client;
        dev->regmap[0] = regmap_init_i2c(dev->client[0], &regmap_config);
        if (IS_ERR(dev->regmap[0])) {
index 1095949f040d2272191dd9d599dc149ff5c6e50f..b12b731e2d4e0f3a2b4d80798ba9f45dbd38193d 100644 (file)
@@ -31,6 +31,7 @@ struct mn88472_dev {
        u16 i2c_wr_max;
        fe_delivery_system_t delivery_system;
        bool warm; /* FW running */
+       u32 xtal;
 };
 
 #endif