Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
7e1b0f75
Commit
7e1b0f75
authored
Aug 27, 2002
by
Frank Davis
Committed by
Linus Torvalds
Aug 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] drivers/media/video/bt856.c
Another i2c-old --> i2c patch for bt856.c .
parent
22101408
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
41 deletions
+71
-41
drivers/media/video/bt856.c
drivers/media/video/bt856.c
+71
-41
No files found.
drivers/media/video/bt856.c
View file @
7e1b0f75
...
...
@@ -47,15 +47,32 @@
#include <linux/version.h>
#include <asm/uaccess.h>
#include <linux/i2c
-old
.h>
#include <linux/i2c.h>
#include <linux/video_encoder.h>
#define DEBUG(x) x
/* Debug driver */
/* ----------------------------------------------------------------------- */
static
unsigned
short
normal_i2c
[]
=
{
34
>>
1
,
I2C_CLIENT_END
};
static
unsigned
short
normal_i2c_range
[]
=
{
I2C_CLIENT_END
};
static
unsigned
short
probe
[
2
]
=
{
I2C_CLIENT_END
,
I2C_CLIENT_END
};
static
unsigned
short
probe_range
[
2
]
=
{
I2C_CLIENT_END
,
I2C_CLIENT_END
};
static
unsigned
short
ignore
[
2
]
=
{
I2C_CLIENT_END
,
I2C_CLIENT_END
};
static
unsigned
short
ignore_range
[
2
]
=
{
I2C_CLIENT_END
,
I2C_CLIENT_END
};
static
unsigned
short
force
[
2
]
=
{
I2C_CLIENT_END
,
I2C_CLIENT_END
};
static
struct
i2c_client_address_data
addr_data
=
{
normal_i2c
,
normal_i2c_range
,
probe
,
probe_range
,
ignore
,
ignore_range
,
force
};
static
struct
i2c_client
client_template
;
struct
bt856
{
struct
i2c_
bus
*
bus
;
struct
i2c_
client
*
client
;
int
addr
;
unsigned
char
reg
[
128
];
...
...
@@ -73,40 +90,35 @@ struct bt856 {
/* ----------------------------------------------------------------------- */
static
int
bt856_write
(
struct
bt856
*
dev
,
unsigned
char
subaddr
,
unsigned
char
data
)
static
int
bt856_probe
(
struct
i2c_adapter
*
adap
)
{
int
ack
;
LOCK_I2C_BUS
(
dev
->
bus
);
i2c_start
(
dev
->
bus
);
i2c_sendbyte
(
dev
->
bus
,
dev
->
addr
,
I2C_DELAY
);
i2c_sendbyte
(
dev
->
bus
,
subaddr
,
I2C_DELAY
);
ack
=
i2c_sendbyte
(
dev
->
bus
,
data
,
I2C_DELAY
);
dev
->
reg
[
subaddr
]
=
data
;
i2c_stop
(
dev
->
bus
);
UNLOCK_I2C_BUS
(
dev
->
bus
);
return
ack
;
return
i2c_probe
(
adap
,
&
addr_data
,
bt856_attach
);
}
static
int
bt856_setbit
(
struct
bt856
*
dev
,
int
subaddr
,
int
bit
,
int
data
)
{
return
bt856_write
(
dev
,
subaddr
,(
dev
->
reg
[
subaddr
]
&
~
(
1
<<
bit
))
|
(
data
?
(
1
<<
bit
)
:
0
));
return
i2c_smbus_write_byte_data
(
dev
->
client
,
subaddr
,(
dev
->
reg
[
subaddr
]
&
~
(
1
<<
bit
))
|
(
data
?
(
1
<<
bit
)
:
0
));
}
/* ----------------------------------------------------------------------- */
static
int
bt856_attach
(
struct
i2c_
device
*
device
)
static
int
bt856_attach
(
struct
i2c_
adapter
*
adap
,
int
addr
,
unsigned
long
flags
,
int
kind
)
{
struct
bt856
*
encoder
;
struct
i2c_client
*
client
;
client
=
kmalloc
(
sizeof
(
*
client
),
GFP_KERNEL
);
if
(
client
==
NULL
)
return
-
ENOMEM
;
client_template
.
adapter
=
adap
;
client_template
.
addr
=
addr
;
memcpy
(
client
,
&
client_template
,
sizeof
(
*
client
));
/* This chip is not on the buz card but at the same address saa7185 */
//if (memcmp(device->bus->name, "buz", 3) == 0 || memcmp(device->bus->name, "zr36057", 6) == 0)
// return 1;
MOD_INC_USE_COUNT
;
device
->
data
=
encoder
=
kmalloc
(
sizeof
(
struct
bt856
),
GFP_KERNEL
);
encoder
=
kmalloc
(
sizeof
(
struct
bt856
),
GFP_KERNEL
);
if
(
encoder
==
NULL
)
{
MOD_DEC_USE_COUNT
;
...
...
@@ -115,17 +127,21 @@ static int bt856_attach(struct i2c_device *device)
memset
(
encoder
,
0
,
sizeof
(
struct
bt856
));
strcpy
(
device
->
name
,
"bt856"
);
encoder
->
bus
=
device
->
bus
;
encoder
->
addr
=
device
->
addr
;
strcpy
(
client
->
name
,
"bt856"
);
encoder
->
client
=
client
;
client
->
data
=
encoder
;
encoder
->
addr
=
client
->
addr
;
encoder
->
norm
=
VIDEO_MODE_NTSC
;
encoder
->
enable
=
1
;
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: attach
\n
"
,
encoder
->
bus
->
name
));
bt856_write
(
encoder
,
0xdc
,
0x18
);
bt856_write
(
encoder
,
0xda
,
0
);
bt856_write
(
encoder
,
0xde
,
0
);
i2c_smbus_write_byte_data
(
client
,
0xdc
,
0x18
);
encoder
->
reg
[
0xdc
]
=
0x18
;
i2c_smbus_write_byte_data
(
client
,
0xda
,
0
);
encoder
->
reg
[
0xda
]
=
0
;
i2c_smbus_write_byte_data
(
client
,
0xde
,
0
);
encoder
->
reg
[
0xde
]
=
0
;
bt856_setbit
(
encoder
,
0xdc
,
3
,
1
);
//bt856_setbit(encoder, 0xdc, 6, 0);
...
...
@@ -145,21 +161,26 @@ static int bt856_attach(struct i2c_device *device)
bt856_setbit
(
encoder
,
0xdc
,
1
,
1
);
bt856_setbit
(
encoder
,
0xde
,
4
,
0
);
bt856_setbit
(
encoder
,
0xde
,
3
,
1
);
init_MUTEX
(
&
encoder
->
lock
);
i2c_attach_client
(
client
);
MOD_INC_USE_COUNT
;
return
0
;
}
static
int
bt856_detach
(
struct
i2c_
device
*
device
)
static
int
bt856_detach
(
struct
i2c_
client
*
client
)
{
kfree
(
device
->
data
);
i2c_detach_client
(
client
);
kfree
(
client
->
data
);
kfree
(
client
);
MOD_DEC_USE_COUNT
;
return
0
;
}
static
int
bt856_command
(
struct
i2c_
device
*
device
,
unsigned
int
cmd
,
static
int
bt856_command
(
struct
i2c_
client
*
client
,
unsigned
int
cmd
,
void
*
arg
)
{
struct
bt856
*
encoder
=
device
->
data
;
struct
bt856
*
encoder
=
client
->
data
;
switch
(
cmd
)
{
...
...
@@ -169,7 +190,7 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: get capabilities
\n
"
,
encoder
->
bus
->
name
));
encoder
->
client
->
name
));
cap
->
flags
=
VIDEO_ENCODER_PAL
...
...
@@ -184,7 +205,7 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
int
*
iarg
=
arg
;
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: set norm %d
\n
"
,
encoder
->
bus
->
name
,
*
iarg
));
encoder
->
client
->
name
,
*
iarg
));
switch
(
*
iarg
)
{
...
...
@@ -211,7 +232,7 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
int
*
iarg
=
arg
;
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: set input %d
\n
"
,
encoder
->
bus
->
name
,
*
iarg
));
encoder
->
client
->
name
,
*
iarg
));
/* We only have video bus.
*iarg = 0: input is from bt819
...
...
@@ -247,7 +268,7 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
int
*
iarg
=
arg
;
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: set output %d
\n
"
,
encoder
->
bus
->
name
,
*
iarg
));
encoder
->
client
->
name
,
*
iarg
));
/* not much choice of outputs */
if
(
*
iarg
!=
0
)
{
...
...
@@ -264,7 +285,7 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
DEBUG
(
printk
(
KERN_INFO
"%s-bt856: enable output %d
\n
"
,
encoder
->
bus
->
name
,
encoder
->
enable
));
encoder
->
client
->
name
,
encoder
->
enable
));
}
break
;
...
...
@@ -279,21 +300,30 @@ static int bt856_command(struct i2c_device *device, unsigned int cmd,
static
struct
i2c_driver
i2c_driver_bt856
=
{
"bt856"
,
/* name */
I2C_DRIVERID_
VIDEOENCODER
,
/* ID */
I2C_
BT856
,
I2C_BT856
+
1
,
bt856_
attach
,
I2C_DRIVERID_
BT856
,
/* ID */
I2C_
DF_NOTIFY
,
bt856_
probe
,
bt856_detach
,
bt856_command
};
static
struct
i2c_client
client_template
=
{
"bt856_client"
,
-
1
,
0
,
0
,
NULL
,
&
i2c_driver_bt856
};
static
int
bt856_init
(
void
)
{
return
i2c_
register
_driver
(
&
i2c_driver_bt856
);
return
i2c_
add
_driver
(
&
i2c_driver_bt856
);
}
static
void
bt856_exit
(
void
)
{
i2c_
unregister
_driver
(
&
i2c_driver_bt856
);
i2c_
del
_driver
(
&
i2c_driver_bt856
);
}
module_init
(
bt856_init
);
...
...
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