All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Hisilicon graphic driver
@ 2015-11-03 13:54 Rongrong Zou
  2015-11-08  7:55 ` Hanjun Guo
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Rongrong Zou @ 2015-11-03 13:54 UTC (permalink / raw)
  To: linux-fbdev

From: Rongrong Zou <rongrongchau@163.com>

Hi1710 chip have a graphic modue with 2d acceleration, this driver support
the graphic module.

Rongrong Zou (3):
  Hisilicon graphic driver: add fbdev support to hisilicon hi1710
    graphic chip
  Hisilicon graphic driver: add hardware cursor support to hisilicon
    hi1710 graphi chip
  Hisilicon graphic driver: add 2d acceleration to hisilicon hi1710
    graphic chip

 MAINTAINERS                                 |    7 +
 drivers/video/fbdev/Kconfig                 |   14 +
 drivers/video/fbdev/Makefile                |    2 +-
 drivers/video/fbdev/hisilicon/Makefile      |    6 +
 drivers/video/fbdev/hisilicon/hisi_accel.c  |  382 ++++++++
 drivers/video/fbdev/hisilicon/hisi_accel.h  |   62 ++
 drivers/video/fbdev/hisilicon/hisi_chip.c   |  131 +++
 drivers/video/fbdev/hisilicon/hisi_chip.h   |   62 ++
 drivers/video/fbdev/hisilicon/hisi_cursor.c |  121 +++
 drivers/video/fbdev/hisilicon/hisi_cursor.h |   11 +
 drivers/video/fbdev/hisilicon/hisi_drv.c    | 1326 +++++++++++++++++++++++++++
 drivers/video/fbdev/hisilicon/hisi_drv.h    |  181 ++++
 drivers/video/fbdev/hisilicon/hisi_help.h   |   64 ++
 drivers/video/fbdev/hisilicon/hisi_hw.c     |  314 +++++++
 drivers/video/fbdev/hisilicon/hisi_hw.h     |   95 ++
 drivers/video/fbdev/hisilicon/hisi_mode.c   |  286 ++++++
 drivers/video/fbdev/hisilicon/hisi_mode.h   |   39 +
 drivers/video/fbdev/hisilicon/hisi_power.c  |  106 +++
 drivers/video/fbdev/hisilicon/hisi_power.h  |   18 +
 drivers/video/fbdev/hisilicon/hisi_reg.h    |  418 +++++++++
 20 files changed, 3644 insertions(+), 1 deletion(-)
 create mode 100644 drivers/video/fbdev/hisilicon/Makefile
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_help.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.c
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.h
 create mode 100644 drivers/video/fbdev/hisilicon/hisi_reg.h

-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/3] Hisilicon graphic driver
  2015-11-03 13:54 [PATCH 0/3] Hisilicon graphic driver Rongrong Zou
@ 2015-11-08  7:55 ` Hanjun Guo
  2015-11-08  8:01 ` Hanjun Guo
  2015-11-10 11:38 ` Tomi Valkeinen
  2 siblings, 0 replies; 4+ messages in thread
From: Hanjun Guo @ 2015-11-08  7:55 UTC (permalink / raw)
  To: linux-fbdev

On 2015/11/3 21:54, Rongrong Zou wrote:
> From: Rongrong Zou <rongrongchau@163.com>
>
> Hi1710 chip have a graphic modue with 2d acceleration, this driver support
> the graphic module.
>
> Rongrong Zou (3):
>   Hisilicon graphic driver: add fbdev support to hisilicon hi1710
>     graphic chip
>   Hisilicon graphic driver: add hardware cursor support to hisilicon
>     hi1710 graphi chip
>   Hisilicon graphic driver: add 2d acceleration to hisilicon hi1710
>     graphic chip

Fixed the conflicts and tested on lemon board, and it works as expected,
queue up for next hulk release.

Thanks
Hanjun

>
>  MAINTAINERS                                 |    7 +
>  drivers/video/fbdev/Kconfig                 |   14 +
>  drivers/video/fbdev/Makefile                |    2 +-
>  drivers/video/fbdev/hisilicon/Makefile      |    6 +
>  drivers/video/fbdev/hisilicon/hisi_accel.c  |  382 ++++++++
>  drivers/video/fbdev/hisilicon/hisi_accel.h  |   62 ++
>  drivers/video/fbdev/hisilicon/hisi_chip.c   |  131 +++
>  drivers/video/fbdev/hisilicon/hisi_chip.h   |   62 ++
>  drivers/video/fbdev/hisilicon/hisi_cursor.c |  121 +++
>  drivers/video/fbdev/hisilicon/hisi_cursor.h |   11 +
>  drivers/video/fbdev/hisilicon/hisi_drv.c    | 1326 +++++++++++++++++++++++++++
>  drivers/video/fbdev/hisilicon/hisi_drv.h    |  181 ++++
>  drivers/video/fbdev/hisilicon/hisi_help.h   |   64 ++
>  drivers/video/fbdev/hisilicon/hisi_hw.c     |  314 +++++++
>  drivers/video/fbdev/hisilicon/hisi_hw.h     |   95 ++
>  drivers/video/fbdev/hisilicon/hisi_mode.c   |  286 ++++++
>  drivers/video/fbdev/hisilicon/hisi_mode.h   |   39 +
>  drivers/video/fbdev/hisilicon/hisi_power.c  |  106 +++
>  drivers/video/fbdev/hisilicon/hisi_power.h  |   18 +
>  drivers/video/fbdev/hisilicon/hisi_reg.h    |  418 +++++++++
>  20 files changed, 3644 insertions(+), 1 deletion(-)
>  create mode 100644 drivers/video/fbdev/hisilicon/Makefile
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_help.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.c
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.h
>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_reg.h
>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/3] Hisilicon graphic driver
  2015-11-03 13:54 [PATCH 0/3] Hisilicon graphic driver Rongrong Zou
  2015-11-08  7:55 ` Hanjun Guo
@ 2015-11-08  8:01 ` Hanjun Guo
  2015-11-10 11:38 ` Tomi Valkeinen
  2 siblings, 0 replies; 4+ messages in thread
From: Hanjun Guo @ 2015-11-08  8:01 UTC (permalink / raw)
  To: linux-fbdev

Hi All,

Obviously this is a noise, really sorry, please ignore it.

Thanks
Hanjun

On 2015/11/8 15:55, Hanjun Guo wrote:
> On 2015/11/3 21:54, Rongrong Zou wrote:
>> From: Rongrong Zou <rongrongchau@163.com>
>>
>> Hi1710 chip have a graphic modue with 2d acceleration, this driver support
>> the graphic module.
>>
>> Rongrong Zou (3):
>>   Hisilicon graphic driver: add fbdev support to hisilicon hi1710
>>     graphic chip
>>   Hisilicon graphic driver: add hardware cursor support to hisilicon
>>     hi1710 graphi chip
>>   Hisilicon graphic driver: add 2d acceleration to hisilicon hi1710
>>     graphic chip
> Fixed the conflicts and tested on lemon board, and it works as expected,
> queue up for next hulk release.
>
> Thanks
> Hanjun
>
>>  MAINTAINERS                                 |    7 +
>>  drivers/video/fbdev/Kconfig                 |   14 +
>>  drivers/video/fbdev/Makefile                |    2 +-
>>  drivers/video/fbdev/hisilicon/Makefile      |    6 +
>>  drivers/video/fbdev/hisilicon/hisi_accel.c  |  382 ++++++++
>>  drivers/video/fbdev/hisilicon/hisi_accel.h  |   62 ++
>>  drivers/video/fbdev/hisilicon/hisi_chip.c   |  131 +++
>>  drivers/video/fbdev/hisilicon/hisi_chip.h   |   62 ++
>>  drivers/video/fbdev/hisilicon/hisi_cursor.c |  121 +++
>>  drivers/video/fbdev/hisilicon/hisi_cursor.h |   11 +
>>  drivers/video/fbdev/hisilicon/hisi_drv.c    | 1326 +++++++++++++++++++++++++++
>>  drivers/video/fbdev/hisilicon/hisi_drv.h    |  181 ++++
>>  drivers/video/fbdev/hisilicon/hisi_help.h   |   64 ++
>>  drivers/video/fbdev/hisilicon/hisi_hw.c     |  314 +++++++
>>  drivers/video/fbdev/hisilicon/hisi_hw.h     |   95 ++
>>  drivers/video/fbdev/hisilicon/hisi_mode.c   |  286 ++++++
>>  drivers/video/fbdev/hisilicon/hisi_mode.h   |   39 +
>>  drivers/video/fbdev/hisilicon/hisi_power.c  |  106 +++
>>  drivers/video/fbdev/hisilicon/hisi_power.h  |   18 +
>>  drivers/video/fbdev/hisilicon/hisi_reg.h    |  418 +++++++++
>>  20 files changed, 3644 insertions(+), 1 deletion(-)
>>  create mode 100644 drivers/video/fbdev/hisilicon/Makefile
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_accel.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_chip.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_cursor.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_drv.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_help.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_hw.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_mode.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.c
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_power.h
>>  create mode 100644 drivers/video/fbdev/hisilicon/hisi_reg.h
>>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/3] Hisilicon graphic driver
  2015-11-03 13:54 [PATCH 0/3] Hisilicon graphic driver Rongrong Zou
  2015-11-08  7:55 ` Hanjun Guo
  2015-11-08  8:01 ` Hanjun Guo
@ 2015-11-10 11:38 ` Tomi Valkeinen
  2 siblings, 0 replies; 4+ messages in thread
From: Tomi Valkeinen @ 2015-11-10 11:38 UTC (permalink / raw)
  To: linux-fbdev

[-- Attachment #1: Type: text/plain, Size: 378 bytes --]

Hi,

On 03/11/15 15:54, Rongrong Zou wrote:
> From: Rongrong Zou <rongrongchau@163.com>
> 
> Hi1710 chip have a graphic modue with 2d acceleration, this driver support
> the graphic module.

I'm not merging new fbdev drivers if there are no special reasons for it
(fb for non-MMU platforms is the only reason I know).

Instead, please write a DRM driver.

 Tomi


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-10 11:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-03 13:54 [PATCH 0/3] Hisilicon graphic driver Rongrong Zou
2015-11-08  7:55 ` Hanjun Guo
2015-11-08  8:01 ` Hanjun Guo
2015-11-10 11:38 ` Tomi Valkeinen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.