Lucas Stach
2dc08a7dac
drm/etnaviv: rework linear window offset calculation
...
The current calculation based on the required_dma mask can be significantly
off, so that the linear window only overlaps a small part of the DRAM
address space. This can lead to the command buffer being unmappable, which
is obviously bad.
Rework the linear window offset calculation to be based on the command buffer
physical address, making sure that the command buffer is always mappable.
Tested-by: Primoz Fiser <primoz.fiser@norik.com >
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com >
Signed-off-by: Lucas Stach <l.stach@pengutronix.de >
2023-12-08 11:24:07 +08:00
Icenowy Zheng
05735e9ff4
drm/verisilicon: fix cursor position
...
The cursor should be placed at (x + hot_x, y + hot_y) to allow partial
display of a cursor.
Signed-off-by: Icenowy Zheng <uwu@icenowy.me >
2023-12-05 23:38:42 +08:00
Icenowy Zheng
35a32afaf8
Kernel: fix out-of-tree build for merged kernel modules
...
Signed-off-by: Icenowy Zheng <uwu@icenowy.me >
2023-11-29 12:54:48 +08:00
NekoRouter
99a459c9f7
Add MIPI panel driver, MIPI panel and touch controller Kconfig, New devicetree file
2023-10-22 21:04:53 -05:00
Han Gao
c10fdb081d
feat: update npu-ax3386 with sdk1.2.1
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-10-18 22:16:33 +08:00
Han Gao
3e8db613d4
fix: reduce log level for aic8800
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-10-10 13:38:16 -05:00
Lu Hui
a29e54cb02
drivers: wireless: add aic8800 support
2023-10-10 13:38:16 -05:00
Robert Nelson
4090089096
NFM: quiet: hub usb usb2-port1
...
Signed-off-by: Robert Nelson <robertcnelson@gmail.com >
2023-10-09 15:46:44 -05:00
Robert Nelson
dd5c99c459
Add_Eth_Phy_and_Wifi_Ble_driver_for_BeagleV_board
...
Signed-off-by: Robert Nelson <robertcnelson@gmail.com >
2023-10-09 15:33:03 -05:00
Mingzheng Xing
f72e7cd077
feat: update gpu to Linux_SDK_V1.2.1
...
This version update involves a lot of content, so the previous version
has been deleted and the new version has been re-merged into the kernel.
The configuration file for the GPU driver originates from a previous
version.
Signed-off-by: Mingzheng Xing <xingmingzheng@iscas.ac.cn >
2023-09-06 12:31:53 +08:00
thead_admin
afef388b8e
Linux_SDK_V1.2.1
...
Signed-off-by: thead_admin <occ_thead@service.alibaba.com >
2023-08-19 15:26:40 +08:00
Han Gao
827be31621
feat: update gpu sdk1.2.0
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-08-02 02:42:20 +08:00
jianghai
c99828ab6f
eth: gmac: adapt to support DMA 32-bit in skb
2023-08-02 01:27:02 +08:00
Han Gao
7d38ead3b4
feat: update SDK1.2.0
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-08-02 01:27:02 +08:00
Mingzheng Xing
9e49618e75
driver: add npu-ax3386-gpl
...
Add a new driver npu-ax3386-gpl, default compile as module.
The default generated modules are:
- vha.ko
- img_mem.ko
- vha_info.ko
Signed-off-by: Mingzheng Xing <xingmingzheng@iscas.ac.cn >
2023-07-19 02:15:19 +08:00
Han Gao
1dd9935a28
fix: remove p2p0 ifname
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-07-14 00:58:41 +08:00
Han Gao
b989adf3aa
fix: remove debug config
...
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-07-14 00:58:41 +08:00
忘怀
42de796933
Input: joystick - fix Kconfig warning for JOYSTICK_ADC
...
[ Upstream commit 6100a19c4fcfe154dd32f8a8ef4e8c0b1f607c75 ]
Fix a Kconfig warning for JOYSTICK_ADC by also selecting
IIO_BUFFER.
WARNING: unmet direct dependencies detected for IIO_BUFFER_CB
Depends on [n]: IIO [=y] && IIO_BUFFER [=n]
Selected by [y]:
- JOYSTICK_ADC [=y] && INPUT [=y] && INPUT_JOYSTICK [=y] && IIO [=y]
Fixes: 2c2b364fddd5 ("Input: joystick - add ADC attached joystick driver.")
Reported-by: kernel test robot <lkp@intel.com >
Signed-off-by: Randy Dunlap <rdunlap@infradead.org >
Link: https://lore.kernel.org/r/20221104201238.31628-1-rdunlap@infradead.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com >
Signed-off-by: Sasha Levin <sashal@kernel.org >
2023-07-04 15:20:54 +08:00
Mingzheng Xing
77c3f5c0d0
Kernel: Add gpu_bxm img-rogue driver
2023-06-25 23:04:18 +08:00
Mingzheng Xing
3eeff2b39d
Kernel: Add video memory driver
2023-06-25 23:04:18 +08:00
Mingzheng Xing
06b8b8d9f0
Kernel: Add vc8000d and vc8000e driver
2023-06-25 23:04:18 +08:00
Han Gao
9c58afc7ad
fix: gpu-viv build failed in gcc-13
...
fix _QuerySignal function signature
Signed-off-by: Han Gao <gaohan@iscas.ac.cn >
2023-06-24 19:48:34 +08:00
Icenowy Zheng
f158bc369f
drm: verisilicon: fix fbcon
...
Always map the GEM object, because it may expect different page
attributes than the fixed map by kernel.
Signed-off-by: Icenowy Zheng <uwu@icenowy.me >
2023-05-08 18:06:22 +08:00
Icenowy Zheng
a396c98059
drm/dc8200: disable gamma lut now
...
It seems to have dependency issue.
Signed-off-by: Icenowy Zheng <uwu@icenowy.me >
2023-05-08 18:06:22 +08:00
t61230
3024960f77
cpufreq to 2GHz
2023-04-06 13:27:48 +08:00
thead_admin
ada47f394b
Linux_SDK_V1.1.2
2023-03-05 22:36:24 +08:00
thead_admin
221913b496
Linux_SDK_V1.0.3
2023-01-04 13:12:21 +08:00
thead_admin
c20e64a982
Linux_SDK_V1.0.2
2022-11-22 15:53:40 +08:00
thead_admin
c9df2bbe57
Linux_SDK_V0.9.5
2022-09-13 11:05:52 +08:00