* [PATCH 0/5] mb862xxfb driver update for 2.6.40
@ 2011-05-13 15:54 Anatolij Gustschin
2011-05-24 7:12 ` Anatolij Gustschin
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Anatolij Gustschin @ 2011-05-13 15:54 UTC (permalink / raw)
To: linux-fbdev
This patch series extends the driver for Coral GDCs to support
such controller features as video layer L1 and I2C bus for video
decoder chips. First three patches are small fixes and improvements.
These patches can also be pulled from
git://git.denx.de/linux-2.6-agust.git mb862xxfb-for-next
Anatolij Gustschin (5):
video: mb862xxfb: correct fix.smem_len field initialization
video: mb862xxfb: use pre-initialized configuration for PCI GDCs
video: mb862xxfb: relocate register space to get contiguous vram
video: mb862xx: add support for controller's I2C bus adapter
video: mb862xxfb: add support for L1 displaying
drivers/video/mb862xx/Makefile | 2 +-
drivers/video/mb862xx/mb862xx-i2c.c | 168 +++++++++++++++++++++++++++++++++++
drivers/video/mb862xx/mb862xx_reg.h | 58 +++++++++++-
drivers/video/mb862xx/mb862xxfb.c | 150 +++++++++++++++++++++++++++++--
drivers/video/mb862xx/mb862xxfb.h | 30 ++++++
5 files changed, 396 insertions(+), 12 deletions(-)
create mode 100644 drivers/video/mb862xx/mb862xx-i2c.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/5] mb862xxfb driver update for 2.6.40
2011-05-13 15:54 [PATCH 0/5] mb862xxfb driver update for 2.6.40 Anatolij Gustschin
@ 2011-05-24 7:12 ` Anatolij Gustschin
2011-05-24 15:14 ` Anatolij Gustschin
2011-05-25 2:07 ` Paul Mundt
2 siblings, 0 replies; 4+ messages in thread
From: Anatolij Gustschin @ 2011-05-24 7:12 UTC (permalink / raw)
To: linux-fbdev
Hi Paul,
On Fri, 13 May 2011 17:54:44 +0200
Anatolij Gustschin <agust@denx.de> wrote:
> This patch series extends the driver for Coral GDCs to support
> such controller features as video layer L1 and I2C bus for video
> decoder chips. First three patches are small fixes and improvements.
>
> These patches can also be pulled from
>
> git://git.denx.de/linux-2.6-agust.git mb862xxfb-for-next
Can you pull these patches for current merge window? Thanks!
>
> Anatolij Gustschin (5):
> video: mb862xxfb: correct fix.smem_len field initialization
> video: mb862xxfb: use pre-initialized configuration for PCI GDCs
> video: mb862xxfb: relocate register space to get contiguous vram
> video: mb862xx: add support for controller's I2C bus adapter
> video: mb862xxfb: add support for L1 displaying
>
> drivers/video/mb862xx/Makefile | 2 +-
> drivers/video/mb862xx/mb862xx-i2c.c | 168 +++++++++++++++++++++++++++++++++++
> drivers/video/mb862xx/mb862xx_reg.h | 58 +++++++++++-
> drivers/video/mb862xx/mb862xxfb.c | 150 +++++++++++++++++++++++++++++--
> drivers/video/mb862xx/mb862xxfb.h | 30 ++++++
> 5 files changed, 396 insertions(+), 12 deletions(-)
> create mode 100644 drivers/video/mb862xx/mb862xx-i2c.c
Anatolij
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/5] mb862xxfb driver update for 2.6.40
2011-05-13 15:54 [PATCH 0/5] mb862xxfb driver update for 2.6.40 Anatolij Gustschin
2011-05-24 7:12 ` Anatolij Gustschin
@ 2011-05-24 15:14 ` Anatolij Gustschin
2011-05-25 2:07 ` Paul Mundt
2 siblings, 0 replies; 4+ messages in thread
From: Anatolij Gustschin @ 2011-05-24 15:14 UTC (permalink / raw)
To: linux-fbdev
On Fri, 13 May 2011 17:54:44 +0200
Anatolij Gustschin <agust@denx.de> wrote:
> This patch series extends the driver for Coral GDCs to support
> such controller features as video layer L1 and I2C bus for video
> decoder chips. First three patches are small fixes and improvements.
Updated patches addressing comments can be pulled now. I rebased
them to apply on top of current fbdev-2.6 git tree.
The following changes since commit af1ce6b2fad7d572aef040d61a935da28a861853:
video: s3c-fb: correct transparency checking in 32bpp (2011-05-24 18:04:37 +0900)
are available in the git repository at:
git://git.denx.de/linux-2.6-agust.git mb862xxfb-for-next
Anatolij Gustschin (5):
video: mb862xxfb: correct fix.smem_len field initialization
video: mb862xxfb: use pre-initialized configuration for PCI GDCs
video: mb862xxfb: relocate register space to get contiguous vram
video: mb862xx: add support for controller's I2C bus adapter
video: mb862xxfb: add support for L1 displaying
drivers/video/Kconfig | 9 +
drivers/video/mb862xx/Makefile | 5 +-
drivers/video/mb862xx/mb862xx-i2c.c | 177 ++++++++++++++++++++
drivers/video/mb862xx/mb862xx_reg.h | 58 ++++++-
drivers/video/mb862xx/mb862xxfb.h | 36 ++++
.../video/mb862xx/{mb862xxfb.c => mb862xxfbdrv.c} | 152 ++++++++++++++++-
6 files changed, 425 insertions(+), 12 deletions(-)
create mode 100644 drivers/video/mb862xx/mb862xx-i2c.c
rename drivers/video/mb862xx/{mb862xxfb.c => mb862xxfbdrv.c} (86%)
Thanks,
Anatolij
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/5] mb862xxfb driver update for 2.6.40
2011-05-13 15:54 [PATCH 0/5] mb862xxfb driver update for 2.6.40 Anatolij Gustschin
2011-05-24 7:12 ` Anatolij Gustschin
2011-05-24 15:14 ` Anatolij Gustschin
@ 2011-05-25 2:07 ` Paul Mundt
2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2011-05-25 2:07 UTC (permalink / raw)
To: linux-fbdev
On Tue, May 24, 2011 at 05:14:29PM +0200, Anatolij Gustschin wrote:
> On Fri, 13 May 2011 17:54:44 +0200
> Anatolij Gustschin <agust@denx.de> wrote:
>
> > This patch series extends the driver for Coral GDCs to support
> > such controller features as video layer L1 and I2C bus for video
> > decoder chips. First three patches are small fixes and improvements.
>
> Updated patches addressing comments can be pulled now. I rebased
> them to apply on top of current fbdev-2.6 git tree.
>
> The following changes since commit af1ce6b2fad7d572aef040d61a935da28a861853:
>
> video: s3c-fb: correct transparency checking in 32bpp (2011-05-24 18:04:37 +0900)
>
> are available in the git repository at:
> git://git.denx.de/linux-2.6-agust.git mb862xxfb-for-next
>
Pulled, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-05-25 2:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-13 15:54 [PATCH 0/5] mb862xxfb driver update for 2.6.40 Anatolij Gustschin
2011-05-24 7:12 ` Anatolij Gustschin
2011-05-24 15:14 ` Anatolij Gustschin
2011-05-25 2:07 ` Paul Mundt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).