forked from luck/tmp_suning_uos_patched
1a3ef038d0
These are common files for the driver for the Sony CXD2880 DVB-T2/T tuner + demodulator. These contains helper functions for the driver. Signed-off-by: Yasunari Takiguchi <Yasunari.Takiguchi@sony.com> Signed-off-by: Masayuki Yamamoto <Masayuki.Yamamoto@sony.com> Signed-off-by: Hideki Nozawa <Hideki.Nozawa@sony.com> Signed-off-by: Kota Yonezawa <Kota.Yonezawa@sony.com> Signed-off-by: Toshihiko Matsumoto <Toshihiko.Matsumoto@sony.com> Signed-off-by: Satoshi Watanabe <Satoshi.C.Watanabe@sony.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
22 lines
493 B
C
22 lines
493 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* cxd2880_common.c
|
|
* Sony CXD2880 DVB-T2/T tuner + demodulator driver
|
|
* common functions
|
|
*
|
|
* Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation
|
|
*/
|
|
|
|
#include "cxd2880_common.h"
|
|
|
|
int cxd2880_convert2s_complement(u32 value, u32 bitlen)
|
|
{
|
|
if (!bitlen || bitlen >= 32)
|
|
return (int)value;
|
|
|
|
if (value & (u32)(1 << (bitlen - 1)))
|
|
return (int)(GENMASK(31, bitlen) | value);
|
|
else
|
|
return (int)(GENMASK(bitlen - 1, 0) & value);
|
|
}
|