Re: [PATCH v2, 03/17] dt-bindings: mediatek: add description for mt8192 display

2020-12-13 Thread Chun-Kuang Hu
Hi, Yongqiang: Yongqiang Niu 於 2020年12月12日 週六 下午12:12寫道: > > add description for mt8192 display Reviewed-by: Chun-Kuang Hu > > Signed-off-by: Yongqiang Niu > --- > Documentation/devicetree/bindings/display/mediatek/mediatek,disp.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >

已向您捐款

2020-12-13 Thread Mr. Francois Pinault
注意:如果您在垃圾邮件/大容量文件夹中收到此消息,那是由于Internet服务提供商实施的限制,我们(FrançoisPinault)敦促您真诚对待它。 *** 您好,弗朗索瓦·皮诺特先生向您捐赠了价值£2,000,000.00英镑。 您可以在Wikipedia或Forbes上验证我的个人资料: https://www.forbes.com/profile/francoispinault/ 要么 https://zh.wikipedia.org/wiki/François_Pinault 有关更多信

Re: [PATCH v2, 15/17] soc: mediatek: mmsys: add mt8192 mmsys support

2020-12-13 Thread Chun-Kuang Hu
Hi, Yongqiang: Yongqiang Niu 於 2020年12月12日 週六 下午12:22寫道: > > add mt8192 mmsys support > > Signed-off-by: Yongqiang Niu > --- > drivers/soc/mediatek/mmsys/Makefile | 1 + > drivers/soc/mediatek/mmsys/mt8192-mmsys.c | 119 > ++ > include/linux/soc/mediatek/mtk

Re: linux-next: Signed-off-by missing for commit in the cifs tree

2020-12-13 Thread Steve French
fixed and repushed to cifs-2.6.git for-next On Sun, Dec 13, 2020 at 4:14 AM Stephen Rothwell wrote: > > Hi all, > > Commit > > 3aa4e616197b ("cifs: Register generic netlink family") > > is missing a Signed-off-by from its committer. > > -- > Cheers, > Stephen Rothwell -- Thanks, Steve

Re: [PATCH v2 16/21] dt-bindings: watchdog: sun4i: Add A100 compatible

2020-12-13 Thread Guenter Roeck
On Fri, Dec 11, 2020 at 01:19:29AM +, Andre Przywara wrote: > From: Yangtao Li > > Add a binding for A100's watchdog controller. > > Signed-off-by: Yangtao Li > Acked-by: Rob Herring > Signed-off-by: Andre Przywara Reviewed-by: Guenter Roeck > --- > .../devicetree/bindings/watchdog/al

[PATCH v3 3/3] scsi: ufs: Revert "Make sure clk scaling happens only when HBA is runtime ACTIVE"

2020-12-13 Thread Can Guo
Commit 73cc291c27024 ("Make sure clk scaling happens only when HBA is runtime ACTIVE") is no longer needed since commit f7a42540928a8 ("scsi: ufs: Protect some contexts from unexpected clock scaling") is a more mature fix to protect UFS LLD stability from clock scaling invoked through sysfs nodes b

[PATCH v3 2/3] scsi: ufs: Clean up ufshcd_exit_clk_scaling/gating()

2020-12-13 Thread Can Guo
ufshcd_hba_exit() is always called after ufshcd_exit_clk_scaling() and ufshcd_exit_clk_gating(), so move ufshcd_exit_clk_scaling/gating() to ufshcd_hba_exit(). Signed-off-by: Can Guo --- drivers/scsi/ufs/ufshcd.c | 32 +++- drivers/scsi/ufs/ufshcd.h | 4 2 files

[PATCH v3 1/3] scsi: ufs: Protect some contexts from unexpected clock scaling

2020-12-13 Thread Can Guo
In contexts like suspend, shutdown and error handling, we need to suspend devfreq to make sure these contexts won't be disturbed by clock scaling. However, suspending devfreq is not enough since users can still trigger a clock scaling by manipulating the sysfs node clkscale_enable and devfreq sysfs

Re: [PATCH] dt-binding: watchdog: add Rockchip compatibles to snps,dw-wdt.yaml

2020-12-13 Thread Guenter Roeck
On Mon, Nov 16, 2020 at 03:25:39PM +0100, Johan Jonker wrote: > The Rockchip watchdog compatibles below are already in use, > but somehow never added to a document, > so add them to the snps,dw-wdt.yaml file. > > "rockchip,rk3066-wdt", "snps,dw-wdt" > "rockchip,rk3188-wdt", "snps,dw-wdt" > "rockch

INFO: task hung in netdev_run_todo (2)

2020-12-13 Thread syzbot
Hello, syzbot found the following issue on: HEAD commit:7575fdda Merge tag 'platform-drivers-x86-v5.9-2' of git://.. git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=1110b33f90 kernel config: https://syzkaller.appspot.com/x/.config?x=c06bcf3cc963d91c das

Re: [PATCH 0/4] Remove PicoXcell

2020-12-13 Thread Jamie Iles
Acked-by: Jamie Iles for the series. Intel EOLd this product now, good idea to remove it. Thanks, Jamie On Thu, Dec 10, 2020 at 02:03:11PM -0600, Rob Herring wrote: > PicoXcell has had nothing but treewide cleanups for at least the last 8 > years and no signs of activity. The most recent acti

Re: [PATCH 2/8] pinctrl: sunxi: Add support for the Allwinner H616 pin controller

2020-12-13 Thread Icenowy Zheng
在 2020-12-02星期三的 13:54 +,Andre Przywara写道: > Port A is used for an internal connection to some analogue circuitry > which looks like an AC200 IP (as in the H6), though this is not > mentioned in the manual. When developing for V831, I found that PIO controller in H616 (and V831) has the functi

Re: [PATCH v2] proc: Allow pid_revalidate() during LOOKUP_RCU

2020-12-13 Thread Matthew Wilcox
On Sun, Dec 13, 2020 at 08:22:32AM -0600, Eric W. Biederman wrote: > Matthew Wilcox writes: > > > On Thu, Dec 03, 2020 at 04:02:12PM -0800, Stephen Brennan wrote: > >> -void pid_update_inode(struct task_struct *task, struct inode *inode) > >> +static int do_pid_update_inode(struct task_struct *ta

[PATCH v4 2/3] scsi: ufs: Clean up ufshcd_exit_clk_scaling/gating()

2020-12-13 Thread Can Guo
ufshcd_hba_exit() is always called after ufshcd_exit_clk_scaling() and ufshcd_exit_clk_gating(), so move ufshcd_exit_clk_scaling/gating() to ufshcd_hba_exit(). Signed-off-by: Can Guo --- drivers/scsi/ufs/ufshcd.c | 32 +++- drivers/scsi/ufs/ufshcd.h | 4 2 files

[PATCH v4 3/3] scsi: ufs: Revert "Make sure clk scaling happens only when HBA is runtime ACTIVE"

2020-12-13 Thread Can Guo
Commit 73cc291c27024 ("Make sure clk scaling happens only when HBA is runtime ACTIVE") is no longer needed since commit f7a42540928a8 ("scsi: ufs: Protect some contexts from unexpected clock scaling") is a more mature fix to protect UFS LLD stability from clock scaling invoked through sysfs nodes b

[PATCH v2] dma-mapping: add unlikely hint for error path in dma_mapping_error

2020-12-13 Thread Heiner Kallweit
Zillions of drivers use the unlikely() hint when checking the result of dma_mapping_error(). This is an inline function anyway, so we can move the hint into this function and remove it from drivers. Signed-off-by: Heiner Kallweit --- v2: Split the big patch into the change for dma-mapping.h and f

Re: [PATCH v2] proc: Allow pid_revalidate() during LOOKUP_RCU

2020-12-13 Thread Matthew Wilcox
On Sun, Dec 13, 2020 at 08:30:40AM -0600, Eric W. Biederman wrote: > Stephen Brennan writes: > > > The pid_revalidate() function requires dropping from RCU into REF lookup > > mode. When many threads are resolving paths within /proc in parallel, > > this can result in heavy spinlock contention as

[PATCH v4 1/3] scsi: ufs: Protect some contexts from unexpected clock scaling

2020-12-13 Thread Can Guo
In contexts like suspend, shutdown and error handling, we need to suspend devfreq to make sure these contexts won't be disturbed by clock scaling. However, suspending devfreq is not enough since users can still trigger a clock scaling by manipulating the sysfs node clkscale_enable and devfreq sysfs

Re: [PATCH v3] Compiler Attributes: remove CONFIG_ENABLE_MUST_CHECK

2020-12-13 Thread Miguel Ojeda
On Sun, Dec 13, 2020 at 4:38 PM 'Matthias Urlichs' via Clang Built Linux wrote: > > If your change to a function breaks its callers, it's your job to fix No function has changed. This patch enables a warning (that for some reason is an error in the case of Guenter). Even if this was a hard error

Please Urgent Response

2020-12-13 Thread Dr.Kasim Mohamed
-- I am Mr Kasim Mohamed Hi Friend I am a bank director of the UBA Bank Plc bf .I want to transfer an abandoned sum of 27.5 millions USD to you through ATM VISA CARD .50% will be for you. No risk involved. Contact me for more details. Kindly reply me back to my alternative email address(mrkasimm

Re: [PATCH v3 4/5] dt-bindings: phy: mixel: mipi-dsi-phy: Add Mixel combo PHY support for i.MX8qxp

2020-12-13 Thread Guido Günther
Hi, On Fri, Dec 11, 2020 at 09:46:21AM +0800, Liu Ying wrote: > Add support for Mixel MIPI DPHY + LVDS PHY combo IP > as found on Freescale i.MX8qxp SoC. > > Cc: Guido Günther > Cc: Kishon Vijay Abraham I > Cc: Vinod Koul > Cc: Rob Herring > Cc: NXP Linux Team > Signed-off-by: Liu Ying > ---

Re: [PATCH v3 5/5] phy: freescale: phy-fsl-imx8-mipi-dphy: Add i.MX8qxp LVDS PHY mode support

2020-12-13 Thread Guido Günther
Hi, On Fri, Dec 11, 2020 at 09:46:22AM +0800, Liu Ying wrote: > i.MX8qxp SoC embeds a Mixel MIPI DPHY + LVDS PHY combo which supports > either a MIPI DSI display or a LVDS display. The PHY mode is controlled > by SCU firmware and the driver would call a SCU firmware function to > configure the PHY

Re: [PATCH v3 3/5] dt-bindings: phy: Convert mixel,mipi-dsi-phy to json-schema

2020-12-13 Thread Guido Günther
Hi, On Fri, Dec 11, 2020 at 09:46:20AM +0800, Liu Ying wrote: > This patch converts the mixel,mipi-dsi-phy binding to > DT schema format using json-schema. > > Comparing to the plain text version, the new binding adds > the 'assigned-clocks', 'assigned-clock-parents' and > 'assigned-clock-rates' p

Re: [PATCH RFC v2 1/5] dt-bindings: net: dwmac-meson: use picoseconds for the RGMII RX delay

2020-12-13 Thread Martin Blumenstingl
Hi Rob, On Mon, Dec 7, 2020 at 8:17 PM Rob Herring wrote: > > On Sun, Nov 15, 2020 at 07:52:06PM +0100, Martin Blumenstingl wrote: > > Amlogic Meson G12A, G12B and SM1 SoCs have a more advanced RGMII RX > > delay register which allows picoseconds precision. Deprecate the old > > "amlogic,rx-delay

Re: [PATCH 1/6] iio:pressure:ms5637: switch to probe_new

2020-12-13 Thread Jonathan Cameron
On Sat, 12 Dec 2020 15:26:17 +0200 Andy Shevchenko wrote: > On Thu, Dec 10, 2020 at 2:01 AM Alexandre Belloni > wrote: > > > > Switch to the modern i2c probe_new callback and drop the i2c_device_id > > array. > > First part is okay. > The second is interesting. It depends if we would like to

[PATCH] char: xillybus: Add driver for XillyUSB (Xillybus variant for USB)

2020-12-13 Thread eli . billauer
From: Eli Billauer The XillyUSB driver is the USB variant for the Xillybus FPGA IP core. Even though it presents a nearly identical API on the FPGA and host, it's almost a complete rewrite of the driver: The framework for exchanging data on a USB bus is fundamentally different from doing the same

Re: [PATCH 2/6] iio:pressure:ms5637: introduce hardware differentiation

2020-12-13 Thread Jonathan Cameron
On Thu, 10 Dec 2020 00:48:53 +0100 Alexandre Belloni wrote: > Some sensors in the ms58xx family have a different PROM length and a > different number of available resolution. introduce struct ms_tp_hw_data to Introduce > handle those differences. > > Signed-off-by: Alexandre Belloni > --- >

[PATCH 0/4] Config and device tree updates for the Librem5 Devkit

2020-12-13 Thread Guido Günther
This enables more components to get a working display, panel, audio and sensors. It also updates some device tree bits to make mainline boot. I've skipped wifi (which needs some more driver work) and devfreq (since Martin is working on that). The config changes don't depend on the DT parts so c

[PATCH 3/4] arm64: dts: imx8mq-librem5-devkit: Mark more regulators as always-on

2020-12-13 Thread Guido Günther
They power vital parts of the board and low power consumption is not really an issue here. It also brings things more in line with what Purism is using downstream. Signed-off-by: Guido Günther --- .../dts/freescale/imx8mq-librem5-devkit.dts | 19 ++- 1 file changed, 10 insertio

[PATCH 2/4] arm64: dts: imx8mq-librem5-devkit: Disable snvs_rtc

2020-12-13 Thread Guido Günther
The board has it's own rtc chip. Signed-off-by: Guido Günther --- arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts | 4 1 file changed, 4 insertions(+) diff --git a/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts b/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts ind

Re: [PATCH 3/6] iio:pressure:ms5637: limit available sample frequencies

2020-12-13 Thread Jonathan Cameron
On Sat, 12 Dec 2020 20:26:16 +0200 Andy Shevchenko wrote: > On Thu, Dec 10, 2020 at 2:03 AM Alexandre Belloni > wrote: > > > > Avoid exposing all the sampling frequencies for chip that only support a > > subset. > > > +static ssize_t ms5637_show_samp_freq(struct device *dev, struct > > devic

[PATCH 4/4] arm64: dts: imx8mq-librem5-devkit: Drop custom clock settings

2020-12-13 Thread Guido Günther
Otherwise the boot hangs early on. Signed-off-by: Guido Günther --- arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts | 5 - 1 file changed, 5 deletions(-) diff --git a/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts b/arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts i

[PATCH 1/4] arm64: defconfig: Enable Librem5 Devkit components

2020-12-13 Thread Guido Günther
This enables - touchscreen: CONFIG_TOUCHSCREEN_GOODIX - charge controller: CONFIG_CHARGER_BQ25890 - audio codec: CONFIG_SND_SOC_IMX_SGTL5000 - rtc: CONFIG_RTC_DRV_M41T80 - magnetometer: CONFIG_IIO_ST_MAGN_3AXIS - pwm: CONFIG_PWM_IMX27 - modem codec: CONFIG_SND_SOC_GTM601 - modem serial: CONFIG_USB

Re: [PATCH 5/6] iio:common:ms_sensors:ms_sensors_i2c: add support for alternative PROM layout

2020-12-13 Thread Jonathan Cameron
On Thu, 10 Dec 2020 00:48:56 +0100 Alexandre Belloni wrote: > Currently, only the 112bit PROM on 7 words is supported. However the ms58xx PROM _with_ 7 words (perhaps?) > family also have devices with a 128bit PROM on 8 words. See AN520: > C-CODE EXAMPLE FOR MS56XX, MS57XX (EXCEPT ANALOG SENSOR

Re: [PATCH] char: xillybus: Add driver for XillyUSB (Xillybus variant for USB)

2020-12-13 Thread Randy Dunlap
On 12/13/20 9:05 AM, eli.billa...@gmail.com wrote: > diff --git a/drivers/char/xillybus/Kconfig b/drivers/char/xillybus/Kconfig > index 130dbdce858f..18fa99ec1029 100644 > --- a/drivers/char/xillybus/Kconfig > +++ b/drivers/char/xillybus/Kconfig > @@ -32,3 +32,14 @@ config XILLYBUS_OF > sys

[PATCH 1/2] dt-bindings: iio: accel: kxcjk1013: Document regulator supplies

2020-12-13 Thread devajithvs
From: Devajith V S kxcjk1013 devices have VDD and VDDIO power lines. Need to make sure the regulators are enabled before any communication with kxcjk1013. Document support for vdd/vddio-supply to implement this. Signed-off-by: Devajith V S --- .../devicetree/bindings/iio/accel/kionix,kxcjk1013

[PATCH 2/2] iio: accel: kxcjk1013: Add rudimentary regulator support

2020-12-13 Thread devajithvs
From: Devajith V S kxcjk1013 devices have VDD and VDDIO power lines. Need to make sure the regulators are enabled before any communication with kxcjk1013. This patch introduces vdd/vddio regulators for kxcjk1013. Signed-off-by: Devajith V S --- drivers/iio/accel/kxcjk-1013.c | 31 +

[PATCH] net: korina: remove busy skb free

2020-12-13 Thread Vincent Stehlé
The ndo_start_xmit() method must not attempt to free the skb to transmit when returning NETDEV_TX_BUSY. Fix the korina_send_packet() function accordingly. Fixes: ef11291bcd5f ("Add support the Korina (IDT RC32434) Ethernet MAC") Signed-off-by: Vincent Stehlé Cc: David S. Miller Cc: Jakub Kicinsk

Re: [PATCH] char: xillybus: Add driver for XillyUSB (Xillybus variant for USB)

2020-12-13 Thread Eli Billauer
Hello Randy, The new driver doesn't depend on XILLYBUS, so the patch puts it correctly outside the "if XILLYBUS" clause. It indeed looks like a mistake, but it isn't. :) Thanks for paying attention to this. Regards, Eli On 13/12/20 19:22, Randy Dunlap wrote: On 12/13/20 9:05 AM, eli.bi

Re: [PATCH v3 5/9] spi: spi-mem: Allow masters to transfer dummy cycles directly by hardware

2020-12-13 Thread Sowjanya Komatineni
On 12/13/20 3:28 AM, Boris Brezillon wrote: On Sun, 13 Dec 2020 10:54:26 +0100 Boris Brezillon wrote: On Sat, 12 Dec 2020 09:28:50 -0800 Sowjanya Komatineni wrote: On 12/12/20 2:57 AM, Boris Brezillon wrote: On Fri, 11 Dec 2020 13:15:59 -0800 Sowjanya Komatineni wrote: This patch

Re: [PATCH v2 00/21] arm64: sunxi: Initial Allwinner H616 SoC support

2020-12-13 Thread Icenowy Zheng
在 2020-12-11星期五的 01:19 +,Andre Przywara写道: > Hi, > > this is the quite expanded second version of the support series for > the > Allwinner H616 SoC. > Besides many fixes for the bugs discovered by the diligent reviewers > (many thanks for that!) this version adds some patches to support > some

已向您捐款

2020-12-13 Thread Mr. Francois Pinault
注意:如果您在垃圾邮件/大容量文件夹中收到此消息,那是由于Internet服务提供商实施的限制,我们(FrançoisPinault)敦促您真诚对待它。 *** 您好,弗朗索瓦·皮诺特先生向您捐赠了价值£2,000,000.00英镑。 您可以在Wikipedia或Forbes上验证我的个人资料: https://www.forbes.com/profile/francoispinault/ 要么 https://zh.wikipedia.org/wiki/François_Pinault 有关更多信

Re: [PATCH 2/2] iio: accel: kxcjk1013: Add rudimentary regulator support

2020-12-13 Thread Jonathan Cameron
On Sun, 13 Dec 2020 22:54:36 +0530 devajithvs wrote: > From: Devajith V S > > kxcjk1013 devices have VDD and VDDIO power lines. Need > to make sure the regulators are enabled before any > communication with kxcjk1013. This patch introduces > vdd/vddio regulators for kxcjk1013. > > Signed-off-b

[PATCH] mm/vmalloc: Fix unlock order in s_stop()

2020-12-13 Thread Waiman Long
When multiple locks are acquired, they should be released in reverse order. For s_start() and s_stop() in mm/vmalloc.c, that is not the case. s_start: mutex_lock(&vmap_purge_lock); spin_lock(&vmap_area_lock); s_stop : mutex_unlock(&vmap_purge_lock); spin_unlock(&vmap_area_lock); This unlock s

Re: [PATCH v2 14/21] phy: sun4i-usb: Rework "pmu_unk1" handling

2020-12-13 Thread Icenowy Zheng
在 2020-12-11星期五的 01:19 +,Andre Przywara写道: > Newer SoCs (A100, H616) need to clear a different bit in our > "unknown" > PMU PHY register. It looks like that the unknown PHY register is PHYCTL register for each individual PHY, and the bit that is cleared is called SUNXI_HCI_PHY_CTRL_SIDDQ in th

[PATCH] powerpc/ps3: use dma_mapping_error()

2020-12-13 Thread Vincent Stehlé
The DMA address returned by dma_map_single() should be checked with dma_mapping_error(). Fix the ps3stor_setup() function accordingly. Fixes: 80071802cb9c ("[POWERPC] PS3: Storage Driver Core") Signed-off-by: Vincent Stehlé Cc: Geoff Levand Cc: Geert Uytterhoeven --- drivers/ps3/ps3stor_lib.c

[PATCH] powerpc: fix alignment bug whithin the init sections

2020-12-13 Thread Ariel Marcovitch
This is a bug that can cause early crashes in configurations with a .exit.text section smaller than a page and a .init.text section that ends in the beginning of a physical page (this is kinda random, which might explain why this wasn't really encountered before). The init sections are ordered lik

[PATCH 04/18] arm64: dts: renesas: beacon kit: Fix Audio Clock sources

2020-12-13 Thread Adam Ford
The SoC was expecting two clock sources with different frequencies. One to support 44.1KHz and one to support 48KHz. With the newly added ability to configure the programmably clock, configure both clocks. Beacause the SoC is expecting a fixed clock/oscillator, it doesn't attempt to get and enabl

[PATCH 09/18] arm64: dts: renesas: beacon: Fix RGB Display PWM Backlight

2020-12-13 Thread Adam Ford
The backlight didn't really work correctly due to some updates that were made in hardware. It should be safe to apply these, because the older hardware was never shipped to anyone, so it shouldn't break anything. Because the display driver refers to the display as DPI, this also renames the backli

[PATCH 11/18] arm64: dts: renesas: beacon: Remove redundant audio code

2020-12-13 Thread Adam Ford
The SoC's DTSI file already configures this. There is no need to do it again. Signed-off-by: Adam Ford --- .../dts/renesas/beacon-renesom-baseboard.dtsi | 17 - 1 file changed, 17 deletions(-) diff --git a/arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi b/arch/arm6

[PATCH 15/18] arm64: dts: renesas: beacon-rzg2m-kit: Rearange SoC unique functions

2020-12-13 Thread Adam Ford
In preparation for adding new dev kits, move anything specific to the RZ/G2M from the SOM-level and baseboard-levels and move them to the kit-level. This allows the SOM and baseboard to be reused with other SoC's. Signed-off-by: Adam Ford --- .../dts/renesas/beacon-renesom-baseboard.dtsi| 1

[PATCH 10/18] arm64: dts: renesas: Don't make vccq_sdhi0 always on

2020-12-13 Thread Adam Ford
vccq_sdhi0 is referenced from sdhi0, so there is no need to force this regualtor to be always-on. In theory it could help with low power modes in the future. Signed-off-by: Adam Ford --- arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi | 3 --- 1 file changed, 3 deletions(-) diff --gi

[PATCH 16/18] dt-bindings: arm: renesas: Add Beacon RZ/G2N and RZ/G2H boards

2020-12-13 Thread Adam Ford
Add beacon,beacon-rzg2n and beacon,beacon-rzg2h to the bindings list. Signed-off-by: Adam Ford --- Documentation/devicetree/bindings/arm/renesas.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/renesas.yaml b/Documentation/devicetree/bindings/arm/

[PATCH 02/18] arm64: dts: renesas: beacon kit: Fix choppy Bluetooth Audio

2020-12-13 Thread Adam Ford
The Bluetooth chip is capable of operating at 4Mbps, but the max-speed setting was on the UART node instead of the Bluetooth node, so the chip didn't operate at the correct speed resulting in choppy audio. Fix this by setting the max-speed in the proper node. Fixes: a1d8a344f1ca ("arm64: dts: ren

Re: [PATCH] mm/vmalloc: Fix unlock order in s_stop()

2020-12-13 Thread Uladzislau Rezki
On Sun, Dec 13, 2020 at 01:08:43PM -0500, Waiman Long wrote: > When multiple locks are acquired, they should be released in reverse > order. For s_start() and s_stop() in mm/vmalloc.c, that is not the > case. > > s_start: mutex_lock(&vmap_purge_lock); spin_lock(&vmap_area_lock); > s_stop : mut

[PATCH 12/18] arm64: dts: renesas: beacon: Better describe keys

2020-12-13 Thread Adam Ford
The keys on the baseboard are laid out in an diamond pattern, up, down, left, right and center. Update the descriptions to make it easier to read. Signed-off-by: Adam Ford --- .../dts/renesas/beacon-renesom-baseboard.dtsi | 20 +-- 1 file changed, 10 insertions(+), 10 deletions(

[PATCH 17/18] arm64: dts: renesas: Introduce r8a774b1-beacon-rzg2n-kit

2020-12-13 Thread Adam Ford
Beacon EmebeddedWorks is introducing a new kit based on the RZ/G2N SoC from Renesas. The SOM supports eMMC, WiFi and Bluetooth, along with a Cat-M1 cellular radio. The Baseboard has Ethernet, USB, HDMI, stereo audio in and out, along with a variety of push buttons and LED's, and support for a par

[PATCH 18/18] arm64: dts: renesas: Introduce r8a774e1-beacon-rzg2h-kit

2020-12-13 Thread Adam Ford
Beacon EmebeddedWorks is introducing a new kit based on the RZ/G2H SoC from Renesas. The SOM supports eMMC, WiFi and Bluetooth, along with a Cat-M1 cellular radio. The Baseboard has Ethernet, USB, HDMI, stereo audio in and out, along with a variety of push buttons and LED's, and support for a par

[PATCH 14/18] arm64: dts: renesas: beacon: Correct I2C bus speeds

2020-12-13 Thread Adam Ford
For greater compatibility with upcoming kits that will reuse the baseboard and SOM-level files, adjust the I2C speeds to make it the most compatible with all devices. Signed-off-by: Adam Ford --- arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi | 2 +- arch/arm64/boot/dts/renesas/beacon

[PATCH 13/18] arm64: dts: renesas: beacon: Enable SPI

2020-12-13 Thread Adam Ford
The baseboard routes the SPI to a header which can/will be configured at either the kit level or using device tree overlays. Because the baseboard be supporting more than one kit, enable at the baseboard level rather than a bunch of duplicates later. Signed-off-by: Adam Ford --- .../boot/dts/re

[PATCH 03/18] arm64: dts: renesas: beacon kit: Remove unnecessary nodes

2020-12-13 Thread Adam Ford
VSPI0 and VSPB are already enabled by default. There is no need to add extra nodes to enable them. Remove the redundant nodes. Signed-off-by: Adam Ford --- arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi | 8 1 file changed, 8 deletions(-) diff --git a/arch/arm64/boot/dts/renesas

[PATCH 00/18] arm64: dts: renesas: Cleanup Beacon Kit and support more SoC's

2020-12-13 Thread Adam Ford
This series contains minor fixes and some reorganization to better support the hardware and add two new kits to which reuse the same SOM and baseboard files. Adam Ford (18): arm64: dts: renesas: beacon kit: Configure programmable clocks arm64: dts: renesas: beacon kit: Fix choppy Bluetooth Aud

[PATCH 05/18] arm64: dts: renesas: beacon: Fix audio-1.8V pin enable

2020-12-13 Thread Adam Ford
The fact the audio worked at all was a coindicence because the wrong gpio enable was used. Use the correct GPIO pin to ensure its operation. Fixes: a1d8a344f1ca ("arm64: dts: renesas: Introduce r8a774a1-beacon-rzg2m-kit") Signed-off-by: Adam Ford --- arch/arm64/boot/dts/renesas/beacon-renesom-b

[PATCH 01/18] arm64: dts: renesas: beacon kit: Configure programmable clocks

2020-12-13 Thread Adam Ford
When the board was added, clock drivers were being updated done at the same time to allow the versaclock driver to properly configure the modes. Unforutnately, the updates were not applied to the board files at the time they should have been, so do it now. Signed-off-by: Adam Ford --- .../dts/r

[PATCH 07/18] arm64: dts: renesas: beacon: Fix LVDS PWM Backlight

2020-12-13 Thread Adam Ford
The backlight didn't really work correctly due to some updates that were made in hardware. It should be safe to apply these, because the older hardware was never shipped to anyone, so it shouldn't break anything. Signed-off-by: Adam Ford --- .../boot/dts/renesas/beacon-renesom-baseboard.dtsi

[PATCH 06/18] arm64: dts: renesas: beacon: Configure Audio CODEC clocks

2020-12-13 Thread Adam Ford
With the newly added configurable clock options, the audio CODEC can configure the mclk automatically. Add the reference to the versaclock. Since the devices on I2C5 can communicate at 400KHz, let's also increase that too Signed-off-by: Adam Ford --- arch/arm64/boot/dts/renesas/beacon-renesom-b

[PATCH 08/18] arm64: dts: renesas: beacon: Enable SCIF4

2020-12-13 Thread Adam Ford
The baseboard supports SCIF4, enable the pins and the node for it. Signed-off-by: Adam Ford --- .../boot/dts/renesas/beacon-renesom-baseboard.dtsi| 11 +++ 1 file changed, 11 insertions(+) diff --git a/arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi b/arch/arm64/boot/dts/

[GIT pull] x86/urgent for 5.10

2020-12-13 Thread Thomas Gleixner
Linus, please pull the latest x86/urgent branch from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-urgent-2020-12-13 up to: 0d07c0ec4381: x86/kprobes: Fix optprobe to detect INT3 padding correctly A set of x86 and membarrier fixes: - Correct a few problems in the x86 an

Re: [PATCH RFC 0/8] dcache: increase poison resistance

2020-12-13 Thread Junxiao Bi
On 12/11/20 11:32 PM, Konstantin Khlebnikov wrote: On Thu, Dec 10, 2020 at 2:01 AM Junxiao Bi > wrote: Hi Konstantin, We tested this patch set recently and found it limiting negative dentry to a small part of total memory. And also we don't see any

[tip: core/rcu] rcu: Fix a typo in rcu_blocking_is_gp() header comment

2020-12-13 Thread tip-bot2 for Zhouyi Zhou
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 354c3f0e22dcb17c10d0b79f6e1c5ba286eec0b0 Gitweb: https://git.kernel.org/tip/354c3f0e22dcb17c10d0b79f6e1c5ba286eec0b0 Author:Zhouyi Zhou AuthorDate:Thu, 15 Oct 2020 03:53:03 Committer: Pau

[tip: core/rcu] scftorture: Add full-test stutter capability

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 85558182d545fe9c0583a39dbb6359ee954e35d5 Gitweb: https://git.kernel.org/tip/85558182d545fe9c0583a39dbb6359ee954e35d5 Author:Paul E. McKenney AuthorDate:Thu, 24 Sep 2020 12:11:57 -07:00 Committ

[tip: core/rcu] rcu,ftrace: Fix ftrace recursion

2020-12-13 Thread tip-bot2 for Peter Zijlstra
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d2098b4440981705e844c50254540ba7b5f82795 Gitweb: https://git.kernel.org/tip/d2098b4440981705e844c50254540ba7b5f82795 Author:Peter Zijlstra AuthorDate:Tue, 29 Sep 2020 13:33:40 +02:00 Committer

[tip: core/rcu] rcu/tree: Make struct kernel_param_ops definitions const

2020-12-13 Thread tip-bot2 for Joe Perches
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 7c47ee5aa00817d8b10f415b4a92d5fb3ac35273 Gitweb: https://git.kernel.org/tip/7c47ee5aa00817d8b10f415b4a92d5fb3ac35273 Author:Joe Perches AuthorDate:Sat, 03 Oct 2020 17:18:08 -07:00 Committer:

[tip: core/rcu] rcuscale: Add RCU Tasks Trace

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 899f317e4886f916ed21027177177c11b577cea1 Gitweb: https://git.kernel.org/tip/899f317e4886f916ed21027177177c11b577cea1 Author:Paul E. McKenney AuthorDate:Wed, 09 Sep 2020 12:27:03 -07:00 Committ

[tip: core/rcu] locktorture: Track time of last ->writeunlock()

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 3480d6774f07341e3e1cf3114f58bef98ea58ae0 Gitweb: https://git.kernel.org/tip/3480d6774f07341e3e1cf3114f58bef98ea58ae0 Author:Paul E. McKenney AuthorDate:Sun, 30 Aug 2020 21:48:23 -07:00 Committ

[tip: core/rcu] docs: Update RCU's hotplug requirements with a bit about design

2020-12-13 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a043260740d5d6ec5be59c3fb595c719890a0b0b Gitweb: https://git.kernel.org/tip/a043260740d5d6ec5be59c3fb595c719890a0b0b Author:Joel Fernandes (Google) AuthorDate:Tue, 29 Sep 2020 15:29:28 -04:00

[tip: core/rcu] torture: Don't kill gdb sessions

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 08c7974293851da6a64989b5ce7a0750e58178b1 Gitweb: https://git.kernel.org/tip/08c7974293851da6a64989b5ce7a0750e58178b1 Author:Paul E. McKenney AuthorDate:Fri, 28 Aug 2020 06:46:03 -07:00 Committ

[tip: core/rcu] net: Un-hide lockdep_sock_is_held() for !LOCKDEP

2020-12-13 Thread tip-bot2 for Jakub Kicinski
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d97f3bdf7a1c0346d3a272aa756d16633f0b8b3b Gitweb: https://git.kernel.org/tip/d97f3bdf7a1c0346d3a272aa756d16633f0b8b3b Author:Jakub Kicinski AuthorDate:Wed, 16 Sep 2020 11:45:24 -07:00 Committer

[tip: core/rcu] sched: Un-hide lockdep_tasklist_lock_is_held() for !LOCKDEP

2020-12-13 Thread tip-bot2 for Jakub Kicinski
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9f14cb030d987ae5e201e88cd345c6d772bcce51 Gitweb: https://git.kernel.org/tip/9f14cb030d987ae5e201e88cd345c6d772bcce51 Author:Jakub Kicinski AuthorDate:Wed, 16 Sep 2020 11:45:22 -07:00 Committer

[tip: core/rcu] kcsan: selftest: Ensure that address is at least PAGE_SIZE

2020-12-13 Thread tip-bot2 for Marco Elver
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 4761612ffe3c1655e58f1ef9cf867c6f67d46fe2 Gitweb: https://git.kernel.org/tip/4761612ffe3c1655e58f1ef9cf867c6f67d46fe2 Author:Marco Elver AuthorDate:Thu, 22 Oct 2020 13:45:52 +02:00 Committer:

[tip: core/rcu] tools/memory-model: Move Documentation description to Documentation/README

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ab8bcad67bee82e4be290b32f0faaf582d7c3edc Gitweb: https://git.kernel.org/tip/ab8bcad67bee82e4be290b32f0faaf582d7c3edc Author:Paul E. McKenney AuthorDate:Tue, 04 Aug 2020 14:00:17 -07:00 Committ

[tip: core/rcu] rcutorture: Make grace-period kthread report match RCU flavor being tested

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 27c0f1448389baf7f309b69e62d4b531c9395e88 Gitweb: https://git.kernel.org/tip/27c0f1448389baf7f309b69e62d4b531c9395e88 Author:Paul E. McKenney AuthorDate:Tue, 15 Sep 2020 17:08:03 -07:00 Committ

[tip: core/rcu] tools: memory-model: Document that the LKMM can easily miss control dependencies

2020-12-13 Thread tip-bot2 for Alan Stern
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 9270e1a744f8ed953009b0e94b26ed0912d9ec1c Gitweb: https://git.kernel.org/tip/9270e1a744f8ed953009b0e94b26ed0912d9ec1c Author:Alan Stern AuthorDate:Sat, 03 Oct 2020 21:40:22 -04:00 Committer:

[tip: core/rcu] tools/memory-model: Label MP tests' producers and consumers

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: b6ff30849ca723b78306514246b98ca5645d92f5 Gitweb: https://git.kernel.org/tip/b6ff30849ca723b78306514246b98ca5645d92f5 Author:Paul E. McKenney AuthorDate:Thu, 05 Nov 2020 13:39:28 -08:00 Committ

[tip: core/rcu] tools/memory-model: Use "buf" and "flag" for message-passing tests

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: acc4bdc55dcb7d7fe0be736999572a55e121873f Gitweb: https://git.kernel.org/tip/acc4bdc55dcb7d7fe0be736999572a55e121873f Author:Paul E. McKenney AuthorDate:Thu, 05 Nov 2020 13:30:11 -08:00 Committ

[tip: core/rcu] tools/memory-model: Add a glossary of LKMM terms

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 0a27ce6b6968866fa8e3bd70371d67752db7718f Gitweb: https://git.kernel.org/tip/0a27ce6b6968866fa8e3bd70371d67752db7718f Author:Paul E. McKenney AuthorDate:Thu, 22 Oct 2020 15:16:08 -07:00 Committ

[tip: core/rcu] docs/memory-barriers.txt: Fix a typo in CPU MEMORY BARRIERS section

2020-12-13 Thread tip-bot2 for Fox Chen
The following commit has been merged into the core/rcu branch of tip: Commit-ID: d8566f15da9b1e51fd35f24321ec133095e02d06 Gitweb: https://git.kernel.org/tip/d8566f15da9b1e51fd35f24321ec133095e02d06 Author:Fox Chen AuthorDate:Wed, 09 Sep 2020 14:53:40 +08:00 Committer:

[tip: core/rcu] rcutorture: Adjust scenarios SRCU-t and SRCU-u to make kconfig happy

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 6f26d010e678249367cc00b5a827c3731c8138f3 Gitweb: https://git.kernel.org/tip/6f26d010e678249367cc00b5a827c3731c8138f3 Author:Paul E. McKenney AuthorDate:Thu, 17 Sep 2020 12:34:01 -07:00 Committ

[tip: core/rcu] rcutorture: Make stutter_wait() caller restore priority

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ab1b7880dec86bbdacd31a4c5cf104de4cf903f2 Gitweb: https://git.kernel.org/tip/ab1b7880dec86bbdacd31a4c5cf104de4cf903f2 Author:Paul E. McKenney AuthorDate:Tue, 22 Sep 2020 16:42:42 -07:00 Committ

[tip: core/rcu] tools/memory-model: Document categories of ordering primitives

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ebb477cb2fb7a44ff600e0a7393bad906a0ecd80 Gitweb: https://git.kernel.org/tip/ebb477cb2fb7a44ff600e0a7393bad906a0ecd80 Author:Paul E. McKenney AuthorDate:Tue, 11 Aug 2020 11:27:33 -07:00 Committ

[tip: core/rcu] docs: RCU: Requirements.rst: Fix a list block

2020-12-13 Thread tip-bot2 for Mauro Carvalho Chehab
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a1b9dbb72b7f39eeaa2fb5bd5cc619679985876e Gitweb: https://git.kernel.org/tip/a1b9dbb72b7f39eeaa2fb5bd5cc619679985876e Author:Mauro Carvalho Chehab AuthorDate:Tue, 06 Oct 2020 15:21:32 +02:00 Co

[tip: core/rcu] scftorture: Add an alternative IPI vector

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 1ac78b49d61d4a095ef8b861542549eef1823f36 Gitweb: https://git.kernel.org/tip/1ac78b49d61d4a095ef8b861542549eef1823f36 Author:Paul E. McKenney AuthorDate:Thu, 03 Sep 2020 13:09:47 -07:00 Committ

[tip: core/rcu] rcu-tasks: Make the units of ->init_fract be jiffies

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 75dc2da5ecd65bdcbfc4d59b9d9b7342c61fe374 Gitweb: https://git.kernel.org/tip/75dc2da5ecd65bdcbfc4d59b9d9b7342c61fe374 Author:Paul E. McKenney AuthorDate:Thu, 17 Sep 2020 16:17:17 -07:00 Committ

[tip: core/rcu] torture: Make torture_stutter() use hrtimer

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: fda5ba9ed254727ac5761b81455d8e93c78eba4a Gitweb: https://git.kernel.org/tip/fda5ba9ed254727ac5761b81455d8e93c78eba4a Author:Paul E. McKenney AuthorDate:Wed, 02 Sep 2020 21:08:41 -07:00 Committ

[tip: core/rcu] rcu: Fix single-CPU check in rcu_blocking_is_gp()

2020-12-13 Thread tip-bot2 for Neeraj Upadhyay
The following commit has been merged into the core/rcu branch of tip: Commit-ID: ed73860cecc3ec12aa50a6dcfb4900e5b4ae9507 Gitweb: https://git.kernel.org/tip/ed73860cecc3ec12aa50a6dcfb4900e5b4ae9507 Author:Neeraj Upadhyay AuthorDate:Wed, 23 Sep 2020 12:59:33 +05:30 Committe

[tip: core/rcu] torture: Prevent jitter processes from delaying failed run

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: c64659ef29e3901be0900ec6fb0485fa3dbdcfd8 Gitweb: https://git.kernel.org/tip/c64659ef29e3901be0900ec6fb0485fa3dbdcfd8 Author:Paul E. McKenney AuthorDate:Fri, 18 Sep 2020 13:26:22 -07:00 Committ

[tip: core/rcu] rcu/tree: nocb: Avoid raising softirq for offloaded ready-to-execute CBs

2020-12-13 Thread tip-bot2 for Joel Fernandes (Google)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: bd56e0a4a291bc9db2cbaddef20ec61a1aad4208 Gitweb: https://git.kernel.org/tip/bd56e0a4a291bc9db2cbaddef20ec61a1aad4208 Author:Joel Fernandes (Google) AuthorDate:Wed, 07 Oct 2020 13:50:36 -07:00

[tip: core/rcu] rcu/tree: Defer kvfree_rcu() allocation to a clean context

2020-12-13 Thread tip-bot2 for Uladzislau Rezki (Sony)
The following commit has been merged into the core/rcu branch of tip: Commit-ID: 56292e8609e39537297a7468dda4d87b9bd81d6a Gitweb: https://git.kernel.org/tip/56292e8609e39537297a7468dda4d87b9bd81d6a Author:Uladzislau Rezki (Sony) AuthorDate:Thu, 29 Oct 2020 17:50:04 +01:00

[tip: core/rcu] rcu: Clarify nocb kthreads naming in RCU_NOCB_CPU config

2020-12-13 Thread tip-bot2 for Neeraj Upadhyay
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a3941517fcd6625adc540aef5ec3f717c8fa71e8 Gitweb: https://git.kernel.org/tip/a3941517fcd6625adc540aef5ec3f717c8fa71e8 Author:Neeraj Upadhyay AuthorDate:Thu, 24 Sep 2020 12:04:10 +05:30 Committe

[tip: core/rcu] rcutorture: Don't do need_resched() testing if ->sync is NULL

2020-12-13 Thread tip-bot2 for Paul E. McKenney
The following commit has been merged into the core/rcu branch of tip: Commit-ID: a7eb937b67b64b8b4645f1ebca3ac2079c6de81b Gitweb: https://git.kernel.org/tip/a7eb937b67b64b8b4645f1ebca3ac2079c6de81b Author:Paul E. McKenney AuthorDate:Fri, 09 Oct 2020 19:51:55 -07:00 Committ

<    1   2   3   4   5   >