Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
d04aa54a
Commit
d04aa54a
authored
Nov 24, 2007
by
Mauro Carvalho Chehab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
V4L/DVB (6674): Add support for other DTV types
Signed-off-by:
Mauro Carvalho Chehab
<
mchehab@infradead.org
>
parent
d74cb25e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
15 deletions
+27
-15
drivers/media/video/tuner-xc2028.c
drivers/media/video/tuner-xc2028.c
+27
-15
No files found.
drivers/media/video/tuner-xc2028.c
View file @
d04aa54a
...
...
@@ -919,35 +919,47 @@ static int xc2028_set_params(struct dvb_frontend *fe,
{
struct
xc2028_data
*
priv
=
fe
->
tuner_priv
;
unsigned
int
type
=
0
;
fe_bandwidth_t
bw
;
fe_bandwidth_t
bw
=
BANDWIDTH_8_MHZ
;
tuner_dbg
(
"%s called
\n
"
,
__FUNCTION__
);
/* FIXME: Only OFDM implemented */
if
(
fe
->
ops
.
info
.
type
!=
FE_OFDM
)
{
tuner_err
(
"DTV type not implemented.
\n
"
);
return
-
EINVAL
;
}
bw
=
p
->
u
.
ofdm
.
bandwidth
;
if
(
bw
==
BANDWIDTH_7_MHZ
||
bw
==
BANDWIDTH_8_MHZ
)
type
|=
F8MHZ
;
if
(
priv
->
ctrl
.
d2633
)
type
|=
D2633
;
else
type
|=
D2620
;
switch
(
fe
->
ops
.
info
.
type
)
{
case
FE_QPSK
:
break
;
case
FE_OFDM
:
bw
=
p
->
u
.
ofdm
.
bandwidth
;
break
;
case
FE_QAM
:
bw
=
BANDWIDTH_6_MHZ
;
type
|=
QAM
;
break
;
case
FE_ATSC
:
bw
=
BANDWIDTH_6_MHZ
;
type
|=
ATSC
|
D2633
;
break
;
}
bw
=
p
->
u
.
ofdm
.
bandwidth
;
/* FIXME:
There are two Scodes that will never be selected:
DTV78 ZARLINK456, DTV78 DIBCOM52
When it should opt for DTV78 instead of DTV7 or DTV8?
*/
switch
(
bw
)
{
case
BANDWIDTH_8_MHZ
:
type
|=
DTV8
;
type
|=
DTV8
|
F8MHZ
;
break
;
case
BANDWIDTH_7_MHZ
:
type
|=
DTV7
;
type
|=
DTV7
|
F8MHZ
;
break
;
case
BANDWIDTH_6_MHZ
:
/* FIXME: Should allow select also ATSC */
type
|=
DTV6
|
QAM
;
type
|=
DTV6
;
break
;
default:
tuner_err
(
"error: bandwidth not supported.
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment