lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 31 Jan 2019 21:15:15 +0300
From:   Dmitry Osipenko <digetx@...il.com>
To:     Thierry Reding <thierry.reding@...il.com>,
        Sowjanya Komatineni <skomatineni@...dia.com>
Cc:     jonathanh@...dia.com, mkarthik@...dia.com, smohammed@...dia.com,
        talho@...dia.com, linux-tegra@...r.kernel.org,
        linux-kernel@...r.kernel.org, linux-i2c@...r.kernel.org
Subject: Re: [PATCH V7 3/5] i2c: tegra: Add DMA Support

31.01.2019 21:08, Dmitry Osipenko пишет:
> 31.01.2019 19:55, Dmitry Osipenko пишет:
> +config I2C_TEGRA_DMA_SUPPORT
> +	bool "NVIDIA Tegra internal I2C controller DMA support"
> +	depends on I2C_TEGRA
> +	depends on TEGRA20_APB_DMA && ARCH_TEGRA_2x_SOC
> +	depends on TEGRA20_APB_DMA && ARCH_TEGRA_3x_SOC
> +	depends on TEGRA20_APB_DMA && ARCH_TEGRA_114_SOC
> +	depends on TEGRA20_APB_DMA && ARCH_TEGRA_124_SOC
> +	depends on TEGRA20_APB_DMA && ARCH_TEGRA_210_SOC
> +	help
> +	  If you say yes to this option, DMA engine integration support will
> +	  be included for the I2C controller embedded in NVIDIA Tegra SOCs
> +

Actually, seems should be like that:

config I2C_TEGRA_DMA_SUPPORT
	bool "NVIDIA Tegra internal I2C controller DMA support"
	depends on I2C_TEGRA
	depends on (TEGRA20_APB_DMA && ARCH_TEGRA_2x_SOC) || \
		   (TEGRA20_APB_DMA && ARCH_TEGRA_3x_SOC) || \
		   (TEGRA20_APB_DMA && ARCH_TEGRA_114_SOC) || \
		   (TEGRA20_APB_DMA && ARCH_TEGRA_124_SOC) || \
		   (TEGRA20_APB_DMA && ARCH_TEGRA_210_SOC)
	help
	  If you say yes to this option, DMA engine integration support will
	  be included for the I2C controller embedded in NVIDIA Tegra SOCs 

But you got the idea.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ