<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nvidia-tegra-modules.git/drivers/Makefile, branch gpu-paging</title>
<subtitle>NVIDIA's kernel modules to support tegra chips (used in Jetson boards)</subtitle>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/'/>
<entry>
<title>bluetooth: realtek: Integrate RTL8822CE BT driver</title>
<updated>2019-11-27T07:44:54+00:00</updated>
<author>
<name>Shobek Attupurath</name>
<email>sattupurath@nvidia.com</email>
</author>
<published>2019-10-06T17:33:49+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=9155ea6b263c2d586bb9a1059bc6ccbeeef09292'/>
<id>9155ea6b263c2d586bb9a1059bc6ccbeeef09292</id>
<content type='text'>
1. Add Kconfig in driver directory
2. Update Makefile and Kconfig to include Realtek 8822CE BT driver

Bug 2685035
Bug 2723126

Change-Id: Ia4d7eb5048b92924e12c6c2cd849d9e15ca349c5
Signed-off-by: Shobek Attupurath &lt;sattupurath@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/2212473
Reviewed-by: Gaurav Asati &lt;gasati@nvidia.com&gt;
Reviewed-by: Mahesh Patil &lt;maheshp@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Ashutosh Jha &lt;ajha@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. Add Kconfig in driver directory
2. Update Makefile and Kconfig to include Realtek 8822CE BT driver

Bug 2685035
Bug 2723126

Change-Id: Ia4d7eb5048b92924e12c6c2cd849d9e15ca349c5
Signed-off-by: Shobek Attupurath &lt;sattupurath@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/2212473
Reviewed-by: Gaurav Asati &lt;gasati@nvidia.com&gt;
Reviewed-by: Mahesh Patil &lt;maheshp@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Ashutosh Jha &lt;ajha@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>DRM: tegra_udrm: Add tegra_udrm DRM driver</title>
<updated>2019-01-09T08:16:57+00:00</updated>
<author>
<name>yogishk</name>
<email>yogishk@nvidia.com</email>
</author>
<published>2018-11-20T14:05:53+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=647118deb4c0682d1205e4707c4bc6759e05c2ff'/>
<id>647118deb4c0682d1205e4707c4bc6759e05c2ff</id>
<content type='text'>
Add skeleton for tegra_udrm DRM driver. This driver adds Kernel DRM
support for user mode DRM driver on NVIDIA Tegra Soc. OSS DRM clients
(e.g. Wayland compositors) expects DRM driver node like
"/dev/dri/card0" and they do raw open()/close() on this node and
pass the obtained fd to UMD (in our case libdrm_nvdc.so). Clients
also tends to do poll()/read() and mmap(). To support this tegra_udrm
registers with DRM framework and provides following ioctls -

DRM_IOCTL_TEGRA_UDRM_DMABUF_MMAP :
To support mmap(), UMD issues this ioctl to send dmabuf fd to the
driver. Driver will return offset which user space can use in
mmap(2) on tegra_udrm device fd.

DRM_IOCTL_TEGRA_UDRM_DMABUF_DESTROY_MAPPINGS:
Clear stored dmabuf fds and offsets.

DRM_IOCTL_TEGRA_UDRM_CLOSE_NOTIFY :
In order to know when DRM client has called close() on driver fd,
UMD issues this ioctl with eventfd. This eventfd will be signaled by
the driver in .preclose method. When clear field in ioctl arg is set,
driver will no longer signal this eventfd.

DRM_IOCTL_TEGRA_UDRM_SEND_VBLANK_EVENT:
DRM clients do poll()/read() on driver fd to get vblank/pageflip
events. To dilever this events to clients, UMD issues this ioctl with
vblank event. Driver injects this event in DRM framework.

To prevent user-space from unintentionally inserting tegra_udrm.ko, we
add modeset module parameter. Driver's init will fail unless it is
inserted with modeset=1.

This driver can't be used with libdrm as UMD. It also doesn't support
ioctl() on driver fd

Bug 200473544
Bug 2158091

Change-Id: I2b463a61a968621f7ec18d788e19c218c5091f06
Signed-off-by: Yogish Kulkarni &lt;yogishk@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1954618
(cherry picked from commit 2f14a005053b32790f6fbccaa91c5a0baec4fc4d)
Reviewed-on: https://git-master.nvidia.com/r/1956232
GVS: Gerrit_Virtual_Submit
Reviewed-by: Bibek Basu &lt;bbasu@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add skeleton for tegra_udrm DRM driver. This driver adds Kernel DRM
support for user mode DRM driver on NVIDIA Tegra Soc. OSS DRM clients
(e.g. Wayland compositors) expects DRM driver node like
"/dev/dri/card0" and they do raw open()/close() on this node and
pass the obtained fd to UMD (in our case libdrm_nvdc.so). Clients
also tends to do poll()/read() and mmap(). To support this tegra_udrm
registers with DRM framework and provides following ioctls -

DRM_IOCTL_TEGRA_UDRM_DMABUF_MMAP :
To support mmap(), UMD issues this ioctl to send dmabuf fd to the
driver. Driver will return offset which user space can use in
mmap(2) on tegra_udrm device fd.

DRM_IOCTL_TEGRA_UDRM_DMABUF_DESTROY_MAPPINGS:
Clear stored dmabuf fds and offsets.

DRM_IOCTL_TEGRA_UDRM_CLOSE_NOTIFY :
In order to know when DRM client has called close() on driver fd,
UMD issues this ioctl with eventfd. This eventfd will be signaled by
the driver in .preclose method. When clear field in ioctl arg is set,
driver will no longer signal this eventfd.

DRM_IOCTL_TEGRA_UDRM_SEND_VBLANK_EVENT:
DRM clients do poll()/read() on driver fd to get vblank/pageflip
events. To dilever this events to clients, UMD issues this ioctl with
vblank event. Driver injects this event in DRM framework.

To prevent user-space from unintentionally inserting tegra_udrm.ko, we
add modeset module parameter. Driver's init will fail unless it is
inserted with modeset=1.

This driver can't be used with libdrm as UMD. It also doesn't support
ioctl() on driver fd

Bug 200473544
Bug 2158091

Change-Id: I2b463a61a968621f7ec18d788e19c218c5091f06
Signed-off-by: Yogish Kulkarni &lt;yogishk@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1954618
(cherry picked from commit 2f14a005053b32790f6fbccaa91c5a0baec4fc4d)
Reviewed-on: https://git-master.nvidia.com/r/1956232
GVS: Gerrit_Virtual_Submit
Reviewed-by: Bibek Basu &lt;bbasu@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>virtualization drivers: move to nvidia</title>
<updated>2018-08-30T00:47:16+00:00</updated>
<author>
<name>Enrico Cadorin</name>
<email>ecadorin@nvidia.com</email>
</author>
<published>2018-08-23T16:52:50+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=96af8ff541fc627a0a540bc5c25c29c42f839cc8'/>
<id>96af8ff541fc627a0a540bc5c25c29c42f839cc8</id>
<content type='text'>
Update Kconfig and Makefile files.

Bug 200386262
Jira HYP-1284

Change-Id: I03a07dfd1660bf6211a58fafc864ac2157ce1bde
Signed-off-by: Enrico Cadorin &lt;ecadorin@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1805568
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Tested-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update Kconfig and Makefile files.

Bug 200386262
Jira HYP-1284

Change-Id: I03a07dfd1660bf6211a58fafc864ac2157ce1bde
Signed-off-by: Enrico Cadorin &lt;ecadorin@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1805568
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Tested-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>trusty: enable trusty driver</title>
<updated>2018-08-10T13:53:43+00:00</updated>
<author>
<name>Stephen Wolfe</name>
<email>swolfe@nvidia.com</email>
</author>
<published>2018-07-27T22:01:04+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=aa40125ac4ccc73383fb92d9819ddc9eebe91c6e'/>
<id>aa40125ac4ccc73383fb92d9819ddc9eebe91c6e</id>
<content type='text'>
Bug 200422831

Change-Id: I302997be6ef44f09471969260229c9c18fc07750
Signed-off-by: Stephen Wolfe &lt;swolfe@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1787794
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Mahesh Lagadapati &lt;mlagadapati@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug 200422831

Change-Id: I302997be6ef44f09471969260229c9c18fc07750
Signed-off-by: Stephen Wolfe &lt;swolfe@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1787794
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Mahesh Lagadapati &lt;mlagadapati@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>pwm_fan: port the pwm fan driver to linux-nvidia repo</title>
<updated>2018-07-09T13:55:06+00:00</updated>
<author>
<name>Darren Sun</name>
<email>darrens@nvidia.com</email>
</author>
<published>2018-07-09T02:52:26+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=9884cdbf40fc22af3706230946ffcabc33b4cccd'/>
<id>9884cdbf40fc22af3706230946ffcabc33b4cccd</id>
<content type='text'>
Update the Kconfig and Makefile for pwm fan.

Bug 200428643

Change-Id: I099d42acab6afb5231a4239208631a9a430c3416
Signed-off-by: Darren Sun &lt;darrens@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1774041
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update the Kconfig and Makefile for pwm fan.

Bug 200428643

Change-Id: I099d42acab6afb5231a4239208631a9a430c3416
Signed-off-by: Darren Sun &lt;darrens@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1774041
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sachin Nikam &lt;snikam@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>nvpps : new kernel module for time sync</title>
<updated>2018-07-06T20:25:09+00:00</updated>
<author>
<name>David Tao</name>
<email>tehyut@nvidia.com</email>
</author>
<published>2018-06-13T23:40:16+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=f6cd6e17236b137038bb36f7cb5c7d0bb9c6f460'/>
<id>f6cd6e17236b137038bb36f7cb5c7d0bb9c6f460</id>
<content type='text'>
Enable 1PPS time source to correlate GPS/TSC/PTP time domains
fixed trailing white space

Bug 2136350

Change-Id: I5fd83ca53d590dfcad0b0e67e73414c6436d5378
Signed-off-by: David Tao &lt;tehyut@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1749126
Reviewed-by: Greg Lo &lt;glo@nvidia.com&gt;
Reviewed-by: Sumeet Gupta &lt;sumeetg@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Suresh Venkatachalam &lt;skathirampat@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable 1PPS time source to correlate GPS/TSC/PTP time domains
fixed trailing white space

Bug 2136350

Change-Id: I5fd83ca53d590dfcad0b0e67e73414c6436d5378
Signed-off-by: David Tao &lt;tehyut@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1749126
Reviewed-by: Greg Lo &lt;glo@nvidia.com&gt;
Reviewed-by: Sumeet Gupta &lt;sumeetg@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: Suresh Venkatachalam &lt;skathirampat@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>soc: tegra: Add rudimentary BPMP DVFS driver</title>
<updated>2018-05-17T17:44:16+00:00</updated>
<author>
<name>Alex Frid</name>
<email>afrid@nvidia.com</email>
</author>
<published>2018-05-10T02:19:03+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=b86cd170df8ed95453843228dc07786e148dc7ee'/>
<id>b86cd170df8ed95453843228dc07786e148dc7ee</id>
<content type='text'>
Added BPMP DVFS driver to provide kernel access to some useful
properties of V/F relations for clocks manged by BPMP-FW. For now, the
only exposed property is maximum clock frequency that is guaranteed to
be reached at/below Vmin at any temperature.

Bug 2045903

Change-Id: I80fdd0a4d68b2fb9f766ed51c7ce616945830e62
Signed-off-by: Alex Frid &lt;afrid@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1709905
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sivaram Nair &lt;sivaramn@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added BPMP DVFS driver to provide kernel access to some useful
properties of V/F relations for clocks manged by BPMP-FW. For now, the
only exposed property is maximum clock frequency that is guaranteed to
be reached at/below Vmin at any temperature.

Bug 2045903

Change-Id: I80fdd0a4d68b2fb9f766ed51c7ce616945830e62
Signed-off-by: Alex Frid &lt;afrid@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1709905
GVS: Gerrit_Virtual_Submit
Reviewed-by: Sivaram Nair &lt;sivaramn@nvidia.com&gt;
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>nvlink: add NVLINK driver stack</title>
<updated>2017-12-06T22:32:26+00:00</updated>
<author>
<name>Adeel Raza</name>
<email>araza@nvidia.com</email>
</author>
<published>2016-12-23T19:31:41+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=450d2af3da9b10bb5fdcf62a5f449d13c84c390e'/>
<id>450d2af3da9b10bb5fdcf62a5f449d13c84c390e</id>
<content type='text'>
NVLINK is a high speed serial communication protocol and an interconnect
developed by NVIDIA. NVLINK provides higher bandwidth and lower latency
in comparison to PCIe. This new protocol/interconnect can be used to
connect the Tegra SOC to various external devices. After the NVLINK
connection has been configured, high speed memory accesses can be made
over NVLINK between Tegra and the external device.

This patch adds the following NVLINK drivers:
  - Tegra NVLINK endpoint driver:
      - Each endpoint driver is respondible for programming the HW of 1
        NVLINK device.
      - The Tegra NVLINK endpoint driver programs the NVLINK controller
        present in the Tegra SOC.
      - Endpoint drivers register themselves with the NVLINK core
        driver. As part of the registration, the endpoint driver
        provides the core driver a structure of callback functions. The
        core driver uses the callback functiions to control the HW
        programming done by the endpoint driver.
      - Endpoint drivers are unaware of the overall state of the NVLINK
        system. Their only job is to program the HW of their NVLINK
        device.
  - NVLINK core driver:
      - The NVLINK core driver manages the entire NVLINK system.
      - The core driver keeps state informatiion about the NVLINK
        system.
      - The core driver also coordinates HW programming between 2 NVLINK
        endpoints by using the callback functions of the endpoint
        drivers.

Right now the NVLINK driver stack only supports the Tegra loopback
topology. But there are plans in the future to add support for more
topologies.

Jira NVLINK-2
Jira NVLINK-3
Jira NVLINK-4
Jira NVLINK-10
Jira NVLINK-16
Jira NVLINK-23

Change-Id: I5996f8d9211877caf63fa5d3c18745f343c4d2e2
Signed-off-by: Adeel Raza &lt;araza@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1611649
GVS: Gerrit_Virtual_Submit
Reviewed-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NVLINK is a high speed serial communication protocol and an interconnect
developed by NVIDIA. NVLINK provides higher bandwidth and lower latency
in comparison to PCIe. This new protocol/interconnect can be used to
connect the Tegra SOC to various external devices. After the NVLINK
connection has been configured, high speed memory accesses can be made
over NVLINK between Tegra and the external device.

This patch adds the following NVLINK drivers:
  - Tegra NVLINK endpoint driver:
      - Each endpoint driver is respondible for programming the HW of 1
        NVLINK device.
      - The Tegra NVLINK endpoint driver programs the NVLINK controller
        present in the Tegra SOC.
      - Endpoint drivers register themselves with the NVLINK core
        driver. As part of the registration, the endpoint driver
        provides the core driver a structure of callback functions. The
        core driver uses the callback functiions to control the HW
        programming done by the endpoint driver.
      - Endpoint drivers are unaware of the overall state of the NVLINK
        system. Their only job is to program the HW of their NVLINK
        device.
  - NVLINK core driver:
      - The NVLINK core driver manages the entire NVLINK system.
      - The core driver keeps state informatiion about the NVLINK
        system.
      - The core driver also coordinates HW programming between 2 NVLINK
        endpoints by using the callback functions of the endpoint
        drivers.

Right now the NVLINK driver stack only supports the Tegra loopback
topology. But there are plans in the future to add support for more
topologies.

Jira NVLINK-2
Jira NVLINK-3
Jira NVLINK-4
Jira NVLINK-10
Jira NVLINK-16
Jira NVLINK-23

Change-Id: I5996f8d9211877caf63fa5d3c18745f343c4d2e2
Signed-off-by: Adeel Raza &lt;araza@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1611649
GVS: Gerrit_Virtual_Submit
Reviewed-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>nvidia: use kernel overlay features</title>
<updated>2017-10-29T18:00:42+00:00</updated>
<author>
<name>Stephen Warren</name>
<email>swarren@nvidia.com</email>
</author>
<published>2017-09-14T16:51:18+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/nvidia-tegra-modules.git/commit/?id=20bb0324e532863cafc5dc41e8cd5a6ec28413d8'/>
<id>20bb0324e532863cafc5dc41e8cd5a6ec28413d8</id>
<content type='text'>
Update all Kconfig files and Makefiles to rely on the kernel overlay
feature. In particular, don't include any Kconfig files or Makefiles
from other overlays. -I directives in CFLAGS are not yet cleaned up.

Bug 1978395

Change-Id: I425d37d55f8ea61fb3a082a1504f994ff30cec03
Signed-off-by: Stephen Warren &lt;swarren@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1561187
Reviewed-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update all Kconfig files and Makefiles to rely on the kernel overlay
feature. In particular, don't include any Kconfig files or Makefiles
from other overlays. -I directives in CFLAGS are not yet cleaned up.

Bug 1978395

Change-Id: I425d37d55f8ea61fb3a082a1504f994ff30cec03
Signed-off-by: Stephen Warren &lt;swarren@nvidia.com&gt;
Reviewed-on: https://git-master.nvidia.com/r/1561187
Reviewed-by: Terje Bergstrom &lt;tbergstrom@nvidia.com&gt;
GVS: Gerrit_Virtual_Submit
Reviewed-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
Tested-by: mobile promotions &lt;svcmobile_promotions@nvidia.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
