This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM5728: Processors forum

Part Number: AM5728

Tool/software:

Hi  

We are trying to port bolymin lcd for our am5728 based custom board using ti 9.03 linux sdk.
We made the changes in:-

arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi and

edited the drivers/gpu/drm/panel/panel-simple.c as is required for the said LCD panel.

The changes are similar as present in the link 
https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1009400/am5728-lcd-vout-hsync-vsync-clk-are-not-getting-probed

After compiling the kernel we are able to successfully boot the board with sd card containing the updated zImage and dtbs.


In order to test we ran the modetest utility but we are getting the error as below:-
modetest
trying to open device 'i915'...failed
trying to open device 'amdgpu'...failed
trying to open device 'radeon'...failed
trying to open device 'nouveau'...failed
trying to open device 'vmwgfx'...failed
trying to open device 'omapdrm'...failed
trying to open device 'exynos'...failed
trying to open device 'tilcdc'...failed
trying to open device 'msm'...failed
trying to open device 'sti'...failed
trying to open device 'tegra'...failed
trying to open device 'imx-drm'...failed
trying to open device 'rockchip'...failed
trying to open device 'atmel-hlcdc'...failed
trying to open device 'fsl-dcu-drm'...failed
trying to open device 'vc4'...failed
trying to open device 'virtio_gpu'...failed
trying to open device 'mediatek'...failed
trying to open device 'meson'...failed
trying to open device 'pl111'...failed
trying to open device 'stm'...failed
trying to open device 'sun4i-drm'...failed
trying to open device 'armada-drm'...failed
trying to open device 'komeda'...failed
trying to open device 'imx-dcss'...failed
trying to open device 'mxsfb-drm'...failed
no device found


The following are enabled in the kernel's .config

CONFIG_DRM=y
CONFIG_DRM_OMAP=y
CONFIG_OMAP5_DSS_HDMI=y
CONFIG_DRM_TILCDC=y
CONFIG_DRM_PANEL_LVDS=y
CONFIG_DRM_PANEL_SIMPLE=y
CONFIG_DRM_PANEL_EDP=y
CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=y
CONFIG_DRM_DISPLAY_CONNECTOR=y
CONFIG_DRM_LVDS_CODEC=y

trying to open device 'omapdrm'...failed


Why is it failing ??

Please help!

Thanks!

  • Vishal,

    Have you checked the Vout registers as in the E2E that you shared?

    -Josue

  • hi ,


    I will check it. But how is it related to omapdrm driver ?
    I am not getting the prints below on my 9.03 sdk (the prints below are coming fine on 6.03 SDK)


    dmesg | grep drm
    [ 3.343336] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 3.349978] [drm] No driver support for vblank timestamp query.
    [ 3.358767] [drm] Enabling DMM ywrap scrolling
    [ 3.377947] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
    [ 3.385210] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 0
    [ 7.489097] [drm] Initialized pvr 1.17.4948957 20110701 for 56000000.gpu on minor 1

    The drm_drv.c has changed drastically in 9.03 as compared to 6.03 SDK. All platform driver code is apparently commented.

  • Hello Vishal,

    My apologies, I must have misunderstood  your question.  Can you share a diff of your changes to the DRM driver?

    comparing the output from 6.03 might not actually be super helpful considering there has been many changes to the panel-simple.c driver in between versions:

    --- /home/josue/data/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-06.03.00.106/board-support/linux-4.19.94+gitAUTOINC+be5389fd85-gbe5389fd85/drivers/gpu/drm/panel/panel-simple.c
    +++ /home/josue/data/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/drivers/gpu/drm/panel/panel-simple.c
    @@ -21,72 +21,141 @@
      * DEALINGS IN THE SOFTWARE.
      */
     
    -#include <linux/backlight.h>
    +#include <linux/delay.h>
     #include <linux/gpio/consumer.h>
    +#include <linux/i2c.h>
    +#include <linux/media-bus-format.h>
     #include <linux/module.h>
     #include <linux/of_platform.h>
     #include <linux/platform_device.h>
    +#include <linux/pm_runtime.h>
     #include <linux/regulator/consumer.h>
     
    -#include <drm/drmP.h>
    +#include <video/display_timing.h>
    +#include <video/of_display_timing.h>
    +#include <video/videomode.h>
    +
     #include <drm/drm_crtc.h>
    +#include <drm/drm_device.h>
    +#include <drm/drm_edid.h>
     #include <drm/drm_mipi_dsi.h>
     #include <drm/drm_panel.h>
     
    -#include <video/display_timing.h>
    -#include <video/videomode.h>
    -
    +/**
    + * struct panel_desc - Describes a simple panel.
    + */
     struct panel_desc {
    +	/**
    +	 * @modes: Pointer to array of fixed modes appropriate for this panel.
    +	 *
    +	 * If only one mode then this can just be the address of the mode.
    +	 * NOTE: cannot be used with "timings" and also if this is specified
    +	 * then you cannot override the mode in the device tree.
    +	 */
     	const struct drm_display_mode *modes;
    +
    +	/** @num_modes: Number of elements in modes array. */
     	unsigned int num_modes;
    +
    +	/**
    +	 * @timings: Pointer to array of display timings
    +	 *
    +	 * NOTE: cannot be used with "modes" and also these will be used to
    +	 * validate a device tree override if one is present.
    +	 */
     	const struct display_timing *timings;
    +
    +	/** @num_timings: Number of elements in timings array. */
     	unsigned int num_timings;
     
    +	/** @bpc: Bits per color. */
     	unsigned int bpc;
     
    -	/**
    -	 * @width: width (in millimeters) of the panel's active display area
    -	 * @height: height (in millimeters) of the panel's active display area
    -	 */
    +	/** @size: Structure containing the physical size of this panel. */
     	struct {
    +		/**
    +		 * @size.width: Width (in mm) of the active display area.
    +		 */
     		unsigned int width;
    +
    +		/**
    +		 * @size.height: Height (in mm) of the active display area.
    +		 */
     		unsigned int height;
     	} size;
     
    -	/**
    -	 * @prepare: the time (in milliseconds) that it takes for the panel to
    -	 *           become ready and start receiving video data
    -	 * @enable: the time (in milliseconds) that it takes for the panel to
    -	 *          display the first valid frame after starting to receive
    -	 *          video data
    -	 * @disable: the time (in milliseconds) that it takes for the panel to
    -	 *           turn the display off (no content is visible)
    -	 * @unprepare: the time (in milliseconds) that it takes for the panel
    -	 *             to power itself down completely
    -	 */
    +	/** @delay: Structure containing various delay values for this panel. */
     	struct {
    +		/**
    +		 * @delay.prepare: Time for the panel to become ready.
    +		 *
    +		 * The time (in milliseconds) that it takes for the panel to
    +		 * become ready and start receiving video data
    +		 */
     		unsigned int prepare;
    +
    +		/**
    +		 * @delay.enable: Time for the panel to display a valid frame.
    +		 *
    +		 * The time (in milliseconds) that it takes for the panel to
    +		 * display the first valid frame after starting to receive
    +		 * video data.
    +		 */
     		unsigned int enable;
    +
    +		/**
    +		 * @delay.disable: Time for the panel to turn the display off.
    +		 *
    +		 * The time (in milliseconds) that it takes for the panel to
    +		 * turn the display off (no content is visible).
    +		 */
     		unsigned int disable;
    +
    +		/**
    +		 * @delay.unprepare: Time to power down completely.
    +		 *
    +		 * The time (in milliseconds) that it takes for the panel
    +		 * to power itself down completely.
    +		 *
    +		 * This time is used to prevent a future "prepare" from
    +		 * starting until at least this many milliseconds has passed.
    +		 * If at prepare time less time has passed since unprepare
    +		 * finished, the driver waits for the remaining time.
    +		 */
     		unsigned int unprepare;
     	} delay;
     
    +	/** @bus_format: See MEDIA_BUS_FMT_... defines. */
     	u32 bus_format;
    +
    +	/** @bus_flags: See DRM_BUS_FLAG_... defines. */
     	u32 bus_flags;
    +
    +	/** @connector_type: LVDS, eDP, DSI, DPI, etc. */
    +	int connector_type;
     };
     
     struct panel_simple {
     	struct drm_panel base;
    +	bool enabled;
    +
     	bool prepared;
    -	bool enabled;
    +
    +	ktime_t prepared_time;
    +	ktime_t unprepared_time;
     
     	const struct panel_desc *desc;
     
    -	struct backlight_device *backlight;
     	struct regulator *supply;
     	struct i2c_adapter *ddc;
     
     	struct gpio_desc *enable_gpio;
    +
    +	struct edid *edid;
    +
    +	struct drm_display_mode override_mode;
    +
    +	enum drm_panel_orientation orientation;
     };
     
     static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
    @@ -94,24 +163,20 @@
     	return container_of(panel, struct panel_simple, base);
     }
     
    -static int panel_simple_get_fixed_modes(struct panel_simple *panel)
    +static unsigned int panel_simple_get_timings_modes(struct panel_simple *panel,
    +						   struct drm_connector *connector)
     {
    -	struct drm_connector *connector = panel->base.connector;
    -	struct drm_device *drm = panel->base.drm;
     	struct drm_display_mode *mode;
     	unsigned int i, num = 0;
    -
    -	if (!panel->desc)
    -		return 0;
     
     	for (i = 0; i < panel->desc->num_timings; i++) {
     		const struct display_timing *dt = &panel->desc->timings[i];
     		struct videomode vm;
     
     		videomode_from_timing(dt, &vm);
    -		mode = drm_mode_create(drm);
    +		mode = drm_mode_create(connector->dev);
     		if (!mode) {
    -			dev_err(drm->dev, "failed to add mode %ux%u\n",
    +			dev_err(panel->base.dev, "failed to add mode %ux%u\n",
     				dt->hactive.typ, dt->vactive.typ);
     			continue;
     		}
    @@ -127,13 +192,23 @@
     		num++;
     	}
     
    +	return num;
    +}
    +
    +static unsigned int panel_simple_get_display_modes(struct panel_simple *panel,
    +						   struct drm_connector *connector)
    +{
    +	struct drm_display_mode *mode;
    +	unsigned int i, num = 0;
    +
     	for (i = 0; i < panel->desc->num_modes; i++) {
     		const struct drm_display_mode *m = &panel->desc->modes[i];
     
    -		mode = drm_mode_duplicate(drm, m);
    +		mode = drm_mode_duplicate(connector->dev, m);
     		if (!mode) {
    -			dev_err(drm->dev, "failed to add mode %ux%u@%u\n",
    -				m->hdisplay, m->vdisplay, m->vrefresh);
    +			dev_err(panel->base.dev, "failed to add mode %ux%u@%u\n",
    +				m->hdisplay, m->vdisplay,
    +				drm_mode_vrefresh(m));
     			continue;
     		}
     
    @@ -147,6 +222,44 @@
     		drm_mode_probed_add(connector, mode);
     		num++;
     	}
    +
    +	return num;
    +}
    +
    +static int panel_simple_get_non_edid_modes(struct panel_simple *panel,
    +					   struct drm_connector *connector)
    +{
    +	struct drm_display_mode *mode;
    +	bool has_override = panel->override_mode.type;
    +	unsigned int num = 0;
    +
    +	if (!panel->desc)
    +		return 0;
    +
    +	if (has_override) {
    +		mode = drm_mode_duplicate(connector->dev,
    +					  &panel->override_mode);
    +		if (mode) {
    +			drm_mode_probed_add(connector, mode);
    +			num = 1;
    +		} else {
    +			dev_err(panel->base.dev, "failed to add override mode\n");
    +		}
    +	}
    +
    +	/* Only add timings if override was not there or failed to validate */
    +	if (num == 0 && panel->desc->num_timings)
    +		num = panel_simple_get_timings_modes(panel, connector);
    +
    +	/*
    +	 * Only add fixed modes if timings/override added no mode.
    +	 *
    +	 * We should only ever have either the display timings specified
    +	 * or a fixed mode. Anything else is rather bogus.
    +	 */
    +	WARN_ON(panel->desc->num_timings && panel->desc->num_modes);
    +	if (num == 0)
    +		num = panel_simple_get_display_modes(panel, connector);
     
     	connector->display_info.bpc = panel->desc->bpc;
     	connector->display_info.width_mm = panel->desc->size.width;
    @@ -159,6 +272,20 @@
     	return num;
     }
     
    +static void panel_simple_wait(ktime_t start_ktime, unsigned int min_ms)
    +{
    +	ktime_t now_ktime, min_ktime;
    +
    +	if (!min_ms)
    +		return;
    +
    +	min_ktime = ktime_add(start_ktime, ms_to_ktime(min_ms));
    +	now_ktime = ktime_get();
    +
    +	if (ktime_before(now_ktime, min_ktime))
    +		msleep(ktime_to_ms(ktime_sub(min_ktime, now_ktime)) + 1);
    +}
    +
     static int panel_simple_disable(struct drm_panel *panel)
     {
     	struct panel_simple *p = to_panel_simple(panel);
    @@ -166,16 +293,24 @@
     	if (!p->enabled)
     		return 0;
     
    -	if (p->backlight) {
    -		p->backlight->props.power = FB_BLANK_POWERDOWN;
    -		p->backlight->props.state |= BL_CORE_FBBLANK;
    -		backlight_update_status(p->backlight);
    -	}
    -
     	if (p->desc->delay.disable)
     		msleep(p->desc->delay.disable);
     
     	p->enabled = false;
    +
    +	return 0;
    +}
    +
    +static int panel_simple_suspend(struct device *dev)
    +{
    +	struct panel_simple *p = dev_get_drvdata(dev);
    +
    +	gpiod_set_value_cansleep(p->enable_gpio, 0);
    +	regulator_disable(p->supply);
    +	p->unprepared_time = ktime_get();
    +
    +	kfree(p->edid);
    +	p->edid = NULL;
     
     	return 0;
     }
    @@ -183,18 +318,40 @@
     static int panel_simple_unprepare(struct drm_panel *panel)
     {
     	struct panel_simple *p = to_panel_simple(panel);
    -
    +	int ret;
    +
    +	/* Unpreparing when already unprepared is a no-op */
     	if (!p->prepared)
     		return 0;
     
    -	gpiod_set_value_cansleep(p->enable_gpio, 0);
    -
    -	regulator_disable(p->supply);
    -
    -	if (p->desc->delay.unprepare)
    -		msleep(p->desc->delay.unprepare);
    -
    +	pm_runtime_mark_last_busy(panel->dev);
    +	ret = pm_runtime_put_autosuspend(panel->dev);
    +	if (ret < 0)
    +		return ret;
     	p->prepared = false;
    +
    +	return 0;
    +}
    +
    +static int panel_simple_resume(struct device *dev)
    +{
    +	struct panel_simple *p = dev_get_drvdata(dev);
    +	int err;
    +
    +	panel_simple_wait(p->unprepared_time, p->desc->delay.unprepare);
    +
    +	err = regulator_enable(p->supply);
    +	if (err < 0) {
    +		dev_err(dev, "failed to enable supply: %d\n", err);
    +		return err;
    +	}
    +
    +	gpiod_set_value_cansleep(p->enable_gpio, 1);
    +
    +	if (p->desc->delay.prepare)
    +		msleep(p->desc->delay.prepare);
    +
    +	p->prepared_time = ktime_get();
     
     	return 0;
     }
    @@ -202,21 +359,17 @@
     static int panel_simple_prepare(struct drm_panel *panel)
     {
     	struct panel_simple *p = to_panel_simple(panel);
    -	int err;
    -
    +	int ret;
    +
    +	/* Preparing when already prepared is a no-op */
     	if (p->prepared)
     		return 0;
     
    -	err = regulator_enable(p->supply);
    -	if (err < 0) {
    -		dev_err(panel->dev, "failed to enable supply: %d\n", err);
    -		return err;
    +	ret = pm_runtime_get_sync(panel->dev);
    +	if (ret < 0) {
    +		pm_runtime_put_autosuspend(panel->dev);
    +		return ret;
     	}
    -
    -	gpiod_set_value_cansleep(p->enable_gpio, 1);
    -
    -	if (p->desc->delay.prepare)
    -		msleep(p->desc->delay.prepare);
     
     	p->prepared = true;
     
    @@ -233,34 +386,39 @@
     	if (p->desc->delay.enable)
     		msleep(p->desc->delay.enable);
     
    -	if (p->backlight) {
    -		p->backlight->props.state &= ~BL_CORE_FBBLANK;
    -		p->backlight->props.power = FB_BLANK_UNBLANK;
    -		backlight_update_status(p->backlight);
    -	}
    -
     	p->enabled = true;
     
     	return 0;
     }
     
    -static int panel_simple_get_modes(struct drm_panel *panel)
    +static int panel_simple_get_modes(struct drm_panel *panel,
    +				  struct drm_connector *connector)
     {
     	struct panel_simple *p = to_panel_simple(panel);
     	int num = 0;
     
     	/* probe EDID if a DDC bus is available */
     	if (p->ddc) {
    -		struct edid *edid = drm_get_edid(panel->connector, p->ddc);
    -		drm_connector_update_edid_property(panel->connector, edid);
    -		if (edid) {
    -			num += drm_add_edid_modes(panel->connector, edid);
    -			kfree(edid);
    -		}
    +		pm_runtime_get_sync(panel->dev);
    +
    +		if (!p->edid)
    +			p->edid = drm_get_edid(connector, p->ddc);
    +
    +		if (p->edid)
    +			num += drm_add_edid_modes(connector, p->edid);
    +
    +		pm_runtime_mark_last_busy(panel->dev);
    +		pm_runtime_put_autosuspend(panel->dev);
     	}
     
     	/* add hard-coded panel modes */
    -	num += panel_simple_get_fixed_modes(p);
    +	num += panel_simple_get_non_edid_modes(p, connector);
    +
    +	/*
    +	 * TODO: Remove once all drm drivers call
    +	 * drm_connector_set_orientation_from_panel()
    +	 */
    +	drm_connector_set_panel_orientation(connector, p->orientation);
     
     	return num;
     }
    @@ -282,19 +440,125 @@
     	return p->desc->num_timings;
     }
     
    +static enum drm_panel_orientation panel_simple_get_orientation(struct drm_panel *panel)
    +{
    +	struct panel_simple *p = to_panel_simple(panel);
    +
    +	return p->orientation;
    +}
    +
     static const struct drm_panel_funcs panel_simple_funcs = {
     	.disable = panel_simple_disable,
     	.unprepare = panel_simple_unprepare,
     	.prepare = panel_simple_prepare,
     	.enable = panel_simple_enable,
     	.get_modes = panel_simple_get_modes,
    +	.get_orientation = panel_simple_get_orientation,
     	.get_timings = panel_simple_get_timings,
     };
    +
    +static struct panel_desc panel_dpi;
    +
    +static int panel_dpi_probe(struct device *dev,
    +			   struct panel_simple *panel)
    +{
    +	struct display_timing *timing;
    +	const struct device_node *np;
    +	struct panel_desc *desc;
    +	unsigned int bus_flags;
    +	struct videomode vm;
    +	int ret;
    +
    +	np = dev->of_node;
    +	desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL);
    +	if (!desc)
    +		return -ENOMEM;
    +
    +	timing = devm_kzalloc(dev, sizeof(*timing), GFP_KERNEL);
    +	if (!timing)
    +		return -ENOMEM;
    +
    +	ret = of_get_display_timing(np, "panel-timing", timing);
    +	if (ret < 0) {
    +		dev_err(dev, "%pOF: no panel-timing node found for \"panel-dpi\" binding\n",
    +			np);
    +		return ret;
    +	}
    +
    +	desc->timings = timing;
    +	desc->num_timings = 1;
    +
    +	of_property_read_u32(np, "width-mm", &desc->size.width);
    +	of_property_read_u32(np, "height-mm", &desc->size.height);
    +
    +	/* Extract bus_flags from display_timing */
    +	bus_flags = 0;
    +	vm.flags = timing->flags;
    +	drm_bus_flags_from_videomode(&vm, &bus_flags);
    +	desc->bus_flags = bus_flags;
    +
    +	/* We do not know the connector for the DT node, so guess it */
    +	desc->connector_type = DRM_MODE_CONNECTOR_DPI;
    +
    +	panel->desc = desc;
    +
    +	return 0;
    +}
    +
    +#define PANEL_SIMPLE_BOUNDS_CHECK(to_check, bounds, field) \
    +	(to_check->field.typ >= bounds->field.min && \
    +	 to_check->field.typ <= bounds->field.max)
    +static void panel_simple_parse_panel_timing_node(struct device *dev,
    +						 struct panel_simple *panel,
    +						 const struct display_timing *ot)
    +{
    +	const struct panel_desc *desc = panel->desc;
    +	struct videomode vm;
    +	unsigned int i;
    +
    +	if (WARN_ON(desc->num_modes)) {
    +		dev_err(dev, "Reject override mode: panel has a fixed mode\n");
    +		return;
    +	}
    +	if (WARN_ON(!desc->num_timings)) {
    +		dev_err(dev, "Reject override mode: no timings specified\n");
    +		return;
    +	}
    +
    +	for (i = 0; i < panel->desc->num_timings; i++) {
    +		const struct display_timing *dt = &panel->desc->timings[i];
    +
    +		if (!PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hactive) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hfront_porch) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hback_porch) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, hsync_len) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vactive) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vfront_porch) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vback_porch) ||
    +		    !PANEL_SIMPLE_BOUNDS_CHECK(ot, dt, vsync_len))
    +			continue;
    +
    +		if (ot->flags != dt->flags)
    +			continue;
    +
    +		videomode_from_timing(ot, &vm);
    +		drm_display_mode_from_videomode(&vm, &panel->override_mode);
    +		panel->override_mode.type |= DRM_MODE_TYPE_DRIVER |
    +					     DRM_MODE_TYPE_PREFERRED;
    +		break;
    +	}
    +
    +	if (WARN_ON(!panel->override_mode.type))
    +		dev_err(dev, "Reject override mode: No display_timing found\n");
    +}
     
     static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
     {
    -	struct device_node *backlight, *ddc;
     	struct panel_simple *panel;
    +	struct display_timing dt;
    +	struct device_node *ddc;
    +	int connector_type;
    +	u32 bus_flags;
     	int err;
     
     	panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
    @@ -302,7 +566,7 @@
     		return -ENOMEM;
     
     	panel->enabled = false;
    -	panel->prepared = false;
    +	panel->prepared_time = 0;
     	panel->desc = desc;
     
     	panel->supply = devm_regulator_get(dev, "power");
    @@ -311,20 +575,14 @@
     
     	panel->enable_gpio = devm_gpiod_get_optional(dev, "enable",
     						     GPIOD_OUT_LOW);
    -	if (IS_ERR(panel->enable_gpio)) {
    -		err = PTR_ERR(panel->enable_gpio);
    -		if (err != -EPROBE_DEFER)
    -			dev_err(dev, "failed to request GPIO: %d\n", err);
    +	if (IS_ERR(panel->enable_gpio))
    +		return dev_err_probe(dev, PTR_ERR(panel->enable_gpio),
    +				     "failed to request GPIO\n");
    +
    +	err = of_drm_get_panel_orientation(dev->of_node, &panel->orientation);
    +	if (err) {
    +		dev_err(dev, "%pOF: failed to get orientation %d\n", dev->of_node, err);
     		return err;
    -	}
    -
    -	backlight = of_parse_phandle(dev->of_node, "backlight", 0);
    -	if (backlight) {
    -		panel->backlight = of_find_backlight_by_node(backlight);
    -		of_node_put(backlight);
    -
    -		if (!panel->backlight)
    -			return -EPROBE_DEFER;
     	}
     
     	ddc = of_parse_phandle(dev->of_node, "ddc-i2c-bus", 0);
    @@ -332,59 +590,156 @@
     		panel->ddc = of_find_i2c_adapter_by_node(ddc);
     		of_node_put(ddc);
     
    -		if (!panel->ddc) {
    -			err = -EPROBE_DEFER;
    -			goto free_backlight;
    -		}
    +		if (!panel->ddc)
    +			return -EPROBE_DEFER;
     	}
     
    -	drm_panel_init(&panel->base);
    -	panel->base.dev = dev;
    -	panel->base.funcs = &panel_simple_funcs;
    -
    -	err = drm_panel_add(&panel->base);
    -	if (err < 0)
    +	if (desc == &panel_dpi) {
    +		/* Handle the generic panel-dpi binding */
    +		err = panel_dpi_probe(dev, panel);
    +		if (err)
    +			goto free_ddc;
    +		desc = panel->desc;
    +	} else {
    +		if (!of_get_display_timing(dev->of_node, "panel-timing", &dt))
    +			panel_simple_parse_panel_timing_node(dev, panel, &dt);
    +	}
    +
    +	connector_type = desc->connector_type;
    +	/* Catch common mistakes for panels. */
    +	switch (connector_type) {
    +	case 0:
    +		dev_warn(dev, "Specify missing connector_type\n");
    +		connector_type = DRM_MODE_CONNECTOR_DPI;
    +		break;
    +	case DRM_MODE_CONNECTOR_LVDS:
    +		WARN_ON(desc->bus_flags &
    +			~(DRM_BUS_FLAG_DE_LOW |
    +			  DRM_BUS_FLAG_DE_HIGH |
    +			  DRM_BUS_FLAG_DATA_MSB_TO_LSB |
    +			  DRM_BUS_FLAG_DATA_LSB_TO_MSB));
    +		WARN_ON(desc->bus_format != MEDIA_BUS_FMT_RGB666_1X7X3_SPWG &&
    +			desc->bus_format != MEDIA_BUS_FMT_RGB888_1X7X4_SPWG &&
    +			desc->bus_format != MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA);
    +		WARN_ON(desc->bus_format == MEDIA_BUS_FMT_RGB666_1X7X3_SPWG &&
    +			desc->bpc != 6);
    +		WARN_ON((desc->bus_format == MEDIA_BUS_FMT_RGB888_1X7X4_SPWG ||
    +			 desc->bus_format == MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA) &&
    +			desc->bpc != 8);
    +		break;
    +	case DRM_MODE_CONNECTOR_eDP:
    +		dev_warn(dev, "eDP panels moved to panel-edp\n");
    +		err = -EINVAL;
     		goto free_ddc;
    +	case DRM_MODE_CONNECTOR_DSI:
    +		if (desc->bpc != 6 && desc->bpc != 8)
    +			dev_warn(dev, "Expected bpc in {6,8} but got: %u\n", desc->bpc);
    +		break;
    +	case DRM_MODE_CONNECTOR_DPI:
    +		bus_flags = DRM_BUS_FLAG_DE_LOW |
    +			    DRM_BUS_FLAG_DE_HIGH |
    +			    DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE |
    +			    DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +			    DRM_BUS_FLAG_DATA_MSB_TO_LSB |
    +			    DRM_BUS_FLAG_DATA_LSB_TO_MSB |
    +			    DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE |
    +			    DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE;
    +		if (desc->bus_flags & ~bus_flags)
    +			dev_warn(dev, "Unexpected bus_flags(%d)\n", desc->bus_flags & ~bus_flags);
    +		if (!(desc->bus_flags & bus_flags))
    +			dev_warn(dev, "Specify missing bus_flags\n");
    +		if (desc->bus_format == 0)
    +			dev_warn(dev, "Specify missing bus_format\n");
    +		if (desc->bpc != 6 && desc->bpc != 8)
    +			dev_warn(dev, "Expected bpc in {6,8} but got: %u\n", desc->bpc);
    +		break;
    +	default:
    +		dev_warn(dev, "Specify a valid connector_type: %d\n", desc->connector_type);
    +		connector_type = DRM_MODE_CONNECTOR_DPI;
    +		break;
    +	}
     
     	dev_set_drvdata(dev, panel);
     
    +	/*
    +	 * We use runtime PM for prepare / unprepare since those power the panel
    +	 * on and off and those can be very slow operations. This is important
    +	 * to optimize powering the panel on briefly to read the EDID before
    +	 * fully enabling the panel.
    +	 */
    +	pm_runtime_enable(dev);
    +	pm_runtime_set_autosuspend_delay(dev, 1000);
    +	pm_runtime_use_autosuspend(dev);
    +
    +	drm_panel_init(&panel->base, dev, &panel_simple_funcs, connector_type);
    +
    +	err = drm_panel_of_backlight(&panel->base);
    +	if (err) {
    +		dev_err_probe(dev, err, "Could not find backlight\n");
    +		goto disable_pm_runtime;
    +	}
    +
    +	drm_panel_add(&panel->base);
    +
     	return 0;
     
    +disable_pm_runtime:
    +	pm_runtime_dont_use_autosuspend(dev);
    +	pm_runtime_disable(dev);
     free_ddc:
     	if (panel->ddc)
     		put_device(&panel->ddc->dev);
    -free_backlight:
    -	if (panel->backlight)
    -		put_device(&panel->backlight->dev);
     
     	return err;
     }
     
    -static int panel_simple_remove(struct device *dev)
    +static void panel_simple_remove(struct device *dev)
     {
     	struct panel_simple *panel = dev_get_drvdata(dev);
     
     	drm_panel_remove(&panel->base);
    -
    -	panel_simple_disable(&panel->base);
    -	panel_simple_unprepare(&panel->base);
    -
    +	drm_panel_disable(&panel->base);
    +	drm_panel_unprepare(&panel->base);
    +
    +	pm_runtime_dont_use_autosuspend(dev);
    +	pm_runtime_disable(dev);
     	if (panel->ddc)
     		put_device(&panel->ddc->dev);
    -
    -	if (panel->backlight)
    -		put_device(&panel->backlight->dev);
    -
    -	return 0;
     }
     
     static void panel_simple_shutdown(struct device *dev)
     {
     	struct panel_simple *panel = dev_get_drvdata(dev);
     
    -	panel_simple_disable(&panel->base);
    -	panel_simple_unprepare(&panel->base);
    +	drm_panel_disable(&panel->base);
    +	drm_panel_unprepare(&panel->base);
     }
    +
    +static const struct drm_display_mode ampire_am_1280800n3tzqw_t00h_mode = {
    +	.clock = 71100,
    +	.hdisplay = 1280,
    +	.hsync_start = 1280 + 40,
    +	.hsync_end = 1280 + 40 + 80,
    +	.htotal = 1280 + 40 + 80 + 40,
    +	.vdisplay = 800,
    +	.vsync_start = 800 + 3,
    +	.vsync_end = 800 + 3 + 10,
    +	.vtotal = 800 + 3 + 10 + 10,
    +	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
    +};
    +
    +static const struct panel_desc ampire_am_1280800n3tzqw_t00h = {
    +	.modes = &ampire_am_1280800n3tzqw_t00h_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
     
     static const struct drm_display_mode ampire_am_480272h3tmqw_t01h_mode = {
     	.clock = 9000,
    @@ -396,7 +751,6 @@
     	.vsync_start = 272 + 2,
     	.vsync_end = 272 + 2 + 10,
     	.vtotal = 272 + 2 + 10 + 2,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
     };
     
    @@ -405,8 +759,8 @@
     	.num_modes = 1,
     	.bpc = 8,
     	.size = {
    -		.width = 105,
    -		.height = 67,
    +		.width = 99,
    +		.height = 58,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
     };
    @@ -421,7 +775,6 @@
     	.vsync_start = 480 + 2,
     	.vsync_end = 480 + 2 + 45,
     	.vtotal = 480 + 2 + 45 + 0,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
     };
     
    @@ -434,6 +787,36 @@
     		.height = 91,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +};
    +
    +static const struct display_timing ampire_am800600p5tmqw_tb8h_timing = {
    +	.pixelclock = { 34500000, 39600000, 50400000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 12, 112, 312 },
    +	.hback_porch = { 87, 87, 48 },
    +	.hsync_len = { 1, 1, 40 },
    +	.vactive = { 600, 600, 600 },
    +	.vfront_porch = { 1, 21, 61 },
    +	.vback_porch = { 38, 38, 19 },
    +	.vsync_len = { 1, 1, 20 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc ampire_am800600p5tmqwtb8h = {
    +	.timings = &ampire_am800600p5tmqw_tb8h_timing,
    +	.num_timings = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 162,
    +		.height = 122,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct display_timing santek_st0700i5y_rbslw_f_timing = {
    @@ -459,7 +842,7 @@
     		.height = 86,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    -	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
     };
     
     static const struct drm_display_mode auo_b101aw03_mode = {
    @@ -472,7 +855,6 @@
     	.vsync_start = 600 + 16,
     	.vsync_end = 600 + 16 + 6,
     	.vtotal = 600 + 16 + 6 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc auo_b101aw03 = {
    @@ -483,29 +865,9 @@
     		.width = 223,
     		.height = 125,
     	},
    -};
    -
    -static const struct drm_display_mode auo_b101ean01_mode = {
    -	.clock = 72500,
    -	.hdisplay = 1280,
    -	.hsync_start = 1280 + 119,
    -	.hsync_end = 1280 + 119 + 32,
    -	.htotal = 1280 + 119 + 32 + 21,
    -	.vdisplay = 800,
    -	.vsync_start = 800 + 4,
    -	.vsync_end = 800 + 4 + 20,
    -	.vtotal = 800 + 4 + 20 + 8,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc auo_b101ean01 = {
    -	.modes = &auo_b101ean01_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 217,
    -		.height = 136,
    -	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode auo_b101xtn01_mode = {
    @@ -518,7 +880,6 @@
     	.vsync_start = 768 + 14,
     	.vsync_end = 768 + 14 + 42,
     	.vtotal = 768 + 14 + 42,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -529,80 +890,6 @@
     	.size = {
     		.width = 223,
     		.height = 125,
    -	},
    -};
    -
    -static const struct drm_display_mode auo_b116xw03_mode = {
    -	.clock = 70589,
    -	.hdisplay = 1366,
    -	.hsync_start = 1366 + 40,
    -	.hsync_end = 1366 + 40 + 40,
    -	.htotal = 1366 + 40 + 40 + 32,
    -	.vdisplay = 768,
    -	.vsync_start = 768 + 10,
    -	.vsync_end = 768 + 10 + 12,
    -	.vtotal = 768 + 10 + 12 + 6,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc auo_b116xw03 = {
    -	.modes = &auo_b116xw03_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 256,
    -		.height = 144,
    -	},
    -};
    -
    -static const struct drm_display_mode auo_b133xtn01_mode = {
    -	.clock = 69500,
    -	.hdisplay = 1366,
    -	.hsync_start = 1366 + 48,
    -	.hsync_end = 1366 + 48 + 32,
    -	.htotal = 1366 + 48 + 32 + 20,
    -	.vdisplay = 768,
    -	.vsync_start = 768 + 3,
    -	.vsync_end = 768 + 3 + 6,
    -	.vtotal = 768 + 3 + 6 + 13,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc auo_b133xtn01 = {
    -	.modes = &auo_b133xtn01_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 293,
    -		.height = 165,
    -	},
    -};
    -
    -static const struct drm_display_mode auo_b133htn01_mode = {
    -	.clock = 150660,
    -	.hdisplay = 1920,
    -	.hsync_start = 1920 + 172,
    -	.hsync_end = 1920 + 172 + 80,
    -	.htotal = 1920 + 172 + 80 + 60,
    -	.vdisplay = 1080,
    -	.vsync_start = 1080 + 25,
    -	.vsync_end = 1080 + 25 + 10,
    -	.vtotal = 1080 + 25 + 10 + 10,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc auo_b133htn01 = {
    -	.modes = &auo_b133htn01_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 293,
    -		.height = 165,
    -	},
    -	.delay = {
    -		.prepare = 105,
    -		.enable = 20,
    -		.unprepare = 50,
     	},
     };
     
    @@ -634,30 +921,28 @@
     	},
     };
     
    -static const struct drm_display_mode auo_g101evn01_0_mode = {
    +static const struct drm_display_mode auo_g101evn010_mode = {
     	.clock = 68930,
     	.hdisplay = 1280,
    -	.hsync_start = 1280 + 48,
    -	.hsync_end = 1280 + 48 + 32,
    -	.htotal = 1280 + 48 + 32 + 48,
    +	.hsync_start = 1280 + 82,
    +	.hsync_end = 1280 + 82 + 2,
    +	.htotal = 1280 + 82 + 2 + 84,
     	.vdisplay = 800,
    -	.vsync_start = 800 + 4,
    -	.vsync_end = 800 + 4 + 4,
    -	.vtotal = 800 + 4 + 4 + 8,
    -	.vrefresh = 60,
    -	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    -};
    -
    -static const struct panel_desc auo_g101evn01_0 = {
    -	.modes = &auo_g101evn01_0_mode,
    -	.num_modes = 1,
    -	.bpc = 8,
    -	.size = {
    -		.width = 217,
    -		.height = 136,
    +	.vsync_start = 800 + 8,
    +	.vsync_end = 800 + 8 + 2,
    +	.vtotal = 800 + 8 + 2 + 6,
    +};
    +
    +static const struct panel_desc auo_g101evn010 = {
    +	.modes = &auo_g101evn010_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 216,
    +		.height = 135,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    -	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode auo_g104sn02_mode = {
    @@ -670,7 +955,6 @@
     	.vsync_start = 600 + 10,
     	.vsync_end = 600 + 10 + 35,
     	.vtotal = 600 + 10 + 35 + 2,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc auo_g104sn02 = {
    @@ -681,6 +965,32 @@
     		.width = 211,
     		.height = 158,
     	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing auo_g121ean01_timing = {
    +	.pixelclock = { 60000000, 74400000, 90000000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 20, 50, 100 },
    +	.hback_porch = { 20, 50, 100 },
    +	.hsync_len = { 30, 100, 200 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 2, 10, 25 },
    +	.vback_porch = { 2, 10, 25 },
    +	.vsync_len = { 4, 18, 50 },
    +};
    +
    +static const struct panel_desc auo_g121ean01 = {
    +	.timings = &auo_g121ean01_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 261,
    +		.height = 163,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing auo_g133han01_timings = {
    @@ -710,6 +1020,31 @@
     		.unprepare = 1000,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode auo_g156xtn01_mode = {
    +	.clock = 76000,
    +	.hdisplay = 1366,
    +	.hsync_start = 1366 + 33,
    +	.hsync_end = 1366 + 33 + 67,
    +	.htotal = 1560,
    +	.vdisplay = 768,
    +	.vsync_start = 768 + 4,
    +	.vsync_end = 768 + 4 + 4,
    +	.vtotal = 806,
    +};
    +
    +static const struct panel_desc auo_g156xtn01 = {
    +	.modes = &auo_g156xtn01_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 344,
    +		.height = 194,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing auo_g185han01_timings = {
    @@ -739,6 +1074,37 @@
     		.unprepare = 1000,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing auo_g190ean01_timings = {
    +	.pixelclock = { 90000000, 108000000, 135000000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 126, 184, 1266 },
    +	.hback_porch = { 84, 122, 844 },
    +	.hsync_len = { 70, 102, 704 },
    +	.vactive = { 1024, 1024, 1024 },
    +	.vfront_porch = { 4, 26, 76 },
    +	.vback_porch = { 2, 8, 25 },
    +	.vsync_len = { 2, 8, 25 },
    +};
    +
    +static const struct panel_desc auo_g190ean01 = {
    +	.timings = &auo_g190ean01_timings,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 376,
    +		.height = 301,
    +	},
    +	.delay = {
    +		.prepare = 50,
    +		.enable = 200,
    +		.disable = 110,
    +		.unprepare = 1000,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing auo_p320hvn03_timings = {
    @@ -767,6 +1133,7 @@
     		.unprepare = 500,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode auo_t215hvn01_mode = {
    @@ -779,7 +1146,6 @@
     	.vsync_start = 1080 + 4,
     	.vsync_end = 1080 + 4 + 5,
     	.vtotal = 1080 + 4 + 5 + 36,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc auo_t215hvn01 = {
    @@ -793,7 +1159,9 @@
     	.delay = {
     		.disable = 5,
     		.unprepare = 1000,
    -	}
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode avic_tm070ddh03_mode = {
    @@ -806,7 +1174,6 @@
     	.vsync_start = 600 + 17,
     	.vsync_end = 600 + 17 + 1,
     	.vtotal = 600 + 17 + 1 + 17,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc avic_tm070ddh03 = {
    @@ -824,68 +1191,182 @@
     	},
     };
     
    +static const struct drm_display_mode bananapi_s070wv20_ct16_mode = {
    +	.clock = 30000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 40,
    +	.hsync_end = 800 + 40 + 48,
    +	.htotal = 800 + 40 + 48 + 40,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 13,
    +	.vsync_end = 480 + 13 + 3,
    +	.vtotal = 480 + 13 + 3 + 29,
    +};
    +
    +static const struct panel_desc bananapi_s070wv20_ct16 = {
    +	.modes = &bananapi_s070wv20_ct16_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +};
    +
     static const struct drm_display_mode boe_hv070wsa_mode = {
    -	.clock = 40800,
    +	.clock = 42105,
     	.hdisplay = 1024,
    -	.hsync_start = 1024 + 90,
    -	.hsync_end = 1024 + 90 + 90,
    -	.htotal = 1024 + 90 + 90 + 90,
    +	.hsync_start = 1024 + 30,
    +	.hsync_end = 1024 + 30 + 30,
    +	.htotal = 1024 + 30 + 30 + 30,
     	.vdisplay = 600,
    -	.vsync_start = 600 + 3,
    -	.vsync_end = 600 + 3 + 4,
    -	.vtotal = 600 + 3 + 4 + 3,
    -	.vrefresh = 60,
    +	.vsync_start = 600 + 10,
    +	.vsync_end = 600 + 10 + 10,
    +	.vtotal = 600 + 10 + 10 + 10,
     };
     
     static const struct panel_desc boe_hv070wsa = {
     	.modes = &boe_hv070wsa_mode,
     	.num_modes = 1,
    +	.bpc = 8,
     	.size = {
     		.width = 154,
     		.height = 90,
     	},
    -};
    -
    -static const struct drm_display_mode boe_nv101wxmn51_modes[] = {
    -	{
    -		.clock = 71900,
    -		.hdisplay = 1280,
    -		.hsync_start = 1280 + 48,
    -		.hsync_end = 1280 + 48 + 32,
    -		.htotal = 1280 + 48 + 32 + 80,
    -		.vdisplay = 800,
    -		.vsync_start = 800 + 3,
    -		.vsync_end = 800 + 3 + 5,
    -		.vtotal = 800 + 3 + 5 + 24,
    -		.vrefresh = 60,
    -	},
    -	{
    -		.clock = 57500,
    -		.hdisplay = 1280,
    -		.hsync_start = 1280 + 48,
    -		.hsync_end = 1280 + 48 + 32,
    -		.htotal = 1280 + 48 + 32 + 80,
    -		.vdisplay = 800,
    -		.vsync_start = 800 + 3,
    -		.vsync_end = 800 + 3 + 5,
    -		.vtotal = 800 + 3 + 5 + 24,
    -		.vrefresh = 48,
    -	},
    -};
    -
    -static const struct panel_desc boe_nv101wxmn51 = {
    -	.modes = boe_nv101wxmn51_modes,
    -	.num_modes = ARRAY_SIZE(boe_nv101wxmn51_modes),
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = {
    +	.clock = 9000,
    +	.hdisplay = 480,
    +	.hsync_start = 480 + 5,
    +	.hsync_end = 480 + 5 + 5,
    +	.htotal = 480 + 5 + 5 + 40,
    +	.vdisplay = 272,
    +	.vsync_start = 272 + 8,
    +	.vsync_end = 272 + 8 + 8,
    +	.vtotal = 272 + 8 + 8 + 8,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc cdtech_s043wq26h_ct7 = {
    +	.modes = &cdtech_s043wq26h_ct7_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 95,
    +		.height = 54,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +};
    +
    +/* S070PWS19HP-FC21 2017/04/22 */
    +static const struct drm_display_mode cdtech_s070pws19hp_fc21_mode = {
    +	.clock = 51200,
    +	.hdisplay = 1024,
    +	.hsync_start = 1024 + 160,
    +	.hsync_end = 1024 + 160 + 20,
    +	.htotal = 1024 + 160 + 20 + 140,
    +	.vdisplay = 600,
    +	.vsync_start = 600 + 12,
    +	.vsync_end = 600 + 12 + 3,
    +	.vtotal = 600 + 12 + 3 + 20,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc cdtech_s070pws19hp_fc21 = {
    +	.modes = &cdtech_s070pws19hp_fc21_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +/* S070SWV29HG-DC44 2017/09/21 */
    +static const struct drm_display_mode cdtech_s070swv29hg_dc44_mode = {
    +	.clock = 33300,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 210,
    +	.hsync_end = 800 + 210 + 2,
    +	.htotal = 800 + 210 + 2 + 44,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 22,
    +	.vsync_end = 480 + 22 + 2,
    +	.vtotal = 480 + 22 + 2 + 21,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc cdtech_s070swv29hg_dc44 = {
    +	.modes = &cdtech_s070swv29hg_dc44_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode cdtech_s070wv95_ct16_mode = {
    +	.clock = 35000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 40,
    +	.hsync_end = 800 + 40 + 40,
    +	.htotal = 800 + 40 + 40 + 48,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 29,
    +	.vsync_end = 480 + 29 + 13,
    +	.vtotal = 480 + 29 + 13 + 3,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc cdtech_s070wv95_ct16 = {
    +	.modes = &cdtech_s070wv95_ct16_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 85,
    +	},
    +};
    +
    +static const struct display_timing chefree_ch101olhlwh_002_timing = {
    +	.pixelclock = { 68900000, 71100000, 73400000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 65, 80, 95 },
    +	.hback_porch = { 64, 79, 94 },
    +	.hsync_len = { 1, 1, 1 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 7, 11, 14 },
    +	.vback_porch = { 7, 11, 14 },
    +	.vsync_len = { 1, 1, 1 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc chefree_ch101olhlwh_002 = {
    +	.timings = &chefree_ch101olhlwh_002_timing,
    +	.num_timings = 1,
     	.bpc = 8,
     	.size = {
     		.width = 217,
    -		.height = 136,
    +		.height = 135,
     	},
     	.delay = {
    -		.prepare = 210,
    -		.enable = 50,
    -		.unprepare = 160,
    -	},
    +		.enable = 200,
    +		.disable = 200,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
    @@ -898,7 +1379,6 @@
     	.vsync_start = 1280 + 1,
     	.vsync_end = 1280 + 1 + 7,
     	.vtotal = 1280 + 1 + 7 + 15,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -910,6 +1390,9 @@
     		.width = 94,
     		.height = 150,
     	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
    @@ -922,7 +1405,6 @@
     	.vsync_start = 768 + 4,
     	.vsync_end = 768 + 4 + 4,
     	.vtotal = 768 + 4 + 4 + 4,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc chunghwa_claa101wa01a = {
    @@ -933,6 +1415,9 @@
     		.width = 220,
     		.height = 120,
     	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode chunghwa_claa101wb01_mode = {
    @@ -945,7 +1430,6 @@
     	.vsync_start = 768 + 16,
     	.vsync_end = 768 + 16 + 8,
     	.vtotal = 768 + 16 + 8 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc chunghwa_claa101wb01 = {
    @@ -955,6 +1439,58 @@
     	.size = {
     		.width = 223,
     		.height = 125,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing dataimage_fg040346dsswbg04_timing = {
    +	.pixelclock = { 5000000, 9000000, 12000000 },
    +	.hactive = { 480, 480, 480 },
    +	.hfront_porch = { 12, 12, 12 },
    +	.hback_porch = { 12, 12, 12 },
    +	.hsync_len = { 21, 21, 21 },
    +	.vactive = { 272, 272, 272 },
    +	.vfront_porch = { 4, 4, 4 },
    +	.vback_porch = { 4, 4, 4 },
    +	.vsync_len = { 8, 8, 8 },
    +};
    +
    +static const struct panel_desc dataimage_fg040346dsswbg04 = {
    +	.timings = &dataimage_fg040346dsswbg04_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 95,
    +		.height = 54,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing dataimage_fg1001l0dsswmg01_timing = {
    +	.pixelclock = { 68900000, 71110000, 73400000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.vactive = { 800, 800, 800 },
    +	.hback_porch = { 100, 100, 100 },
    +	.hfront_porch = { 100, 100, 100 },
    +	.vback_porch = { 5, 5, 5 },
    +	.vfront_porch = { 5, 5, 5 },
    +	.hsync_len = { 24, 24, 24 },
    +	.vsync_len = { 3, 3, 3 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
    +};
    +
    +static const struct panel_desc dataimage_fg1001l0dsswmg01 = {
    +	.timings = &dataimage_fg1001l0dsswmg01_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
     	},
     };
     
    @@ -968,7 +1504,6 @@
     	.vsync_start = 480 + 10,
     	.vsync_end = 480 + 10 + 2,
     	.vtotal = 480 + 10 + 2 + 33,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1011,6 +1546,145 @@
     		.disable = 200,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing dlc_dlc1010gig_timing = {
    +	.pixelclock = { 68900000, 71100000, 73400000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 43, 53, 63 },
    +	.hback_porch = { 43, 53, 63 },
    +	.hsync_len = { 44, 54, 64 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 5, 8, 11 },
    +	.vback_porch = { 5, 8, 11 },
    +	.vsync_len = { 5, 7, 11 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc dlc_dlc1010gig = {
    +	.timings = &dlc_dlc1010gig_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 216,
    +		.height = 135,
    +	},
    +	.delay = {
    +		.prepare = 60,
    +		.enable = 150,
    +		.disable = 100,
    +		.unprepare = 60,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode edt_et035012dm6_mode = {
    +	.clock = 6500,
    +	.hdisplay = 320,
    +	.hsync_start = 320 + 20,
    +	.hsync_end = 320 + 20 + 30,
    +	.htotal = 320 + 20 + 68,
    +	.vdisplay = 240,
    +	.vsync_start = 240 + 4,
    +	.vsync_end = 240 + 4 + 4,
    +	.vtotal = 240 + 4 + 4 + 14,
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc edt_et035012dm6 = {
    +	.modes = &edt_et035012dm6_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 70,
    +		.height = 52,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_LOW | DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE,
    +};
    +
    +static const struct drm_display_mode edt_etm0350g0dh6_mode = {
    +	.clock = 6520,
    +	.hdisplay = 320,
    +	.hsync_start = 320 + 20,
    +	.hsync_end = 320 + 20 + 68,
    +	.htotal = 320 + 20 + 68,
    +	.vdisplay = 240,
    +	.vsync_start = 240 + 4,
    +	.vsync_end = 240 + 4 + 18,
    +	.vtotal = 240 + 4 + 18,
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc edt_etm0350g0dh6 = {
    +	.modes = &edt_etm0350g0dh6_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 70,
    +		.height = 53,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode edt_etm043080dh6gp_mode = {
    +	.clock = 10870,
    +	.hdisplay = 480,
    +	.hsync_start = 480 + 8,
    +	.hsync_end = 480 + 8 + 4,
    +	.htotal = 480 + 8 + 4 + 41,
    +
    +	/*
    +	 * IWG22M: Y resolution changed for "dc_linuxfb" module crashing while
    +	 * fb_align
    +	 */
    +
    +	.vdisplay = 288,
    +	.vsync_start = 288 + 2,
    +	.vsync_end = 288 + 2 + 4,
    +	.vtotal = 288 + 2 + 4 + 10,
    +};
    +
    +static const struct panel_desc edt_etm043080dh6gp = {
    +	.modes = &edt_etm043080dh6gp_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 100,
    +		.height = 65,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode edt_etm0430g0dh6_mode = {
    +	.clock = 9000,
    +	.hdisplay = 480,
    +	.hsync_start = 480 + 2,
    +	.hsync_end = 480 + 2 + 41,
    +	.htotal = 480 + 2 + 41 + 2,
    +	.vdisplay = 272,
    +	.vsync_start = 272 + 2,
    +	.vsync_end = 272 + 2 + 10,
    +	.vtotal = 272 + 2 + 10 + 2,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc edt_etm0430g0dh6 = {
    +	.modes = &edt_etm0430g0dh6_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 95,
    +		.height = 54,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct drm_display_mode edt_et057090dhu_mode = {
    @@ -1023,7 +1697,6 @@
     	.vsync_start = 480 + 10,
     	.vsync_end = 480 + 10 + 3,
     	.vtotal = 480 + 10 + 3 + 32,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1037,6 +1710,7 @@
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct drm_display_mode edt_etm0700g0dh6_mode = {
    @@ -1049,7 +1723,6 @@
     	.vsync_start = 480 + 10,
     	.vsync_end = 480 + 10 + 2,
     	.vtotal = 480 + 10 + 2 + 33,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
     };
     
    @@ -1063,6 +1736,7 @@
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct panel_desc edt_etm0700g0bdh6 = {
    @@ -1075,6 +1749,113 @@
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing edt_etml0700y5dha_timing = {
    +	.pixelclock = { 40800000, 51200000, 67200000 },
    +	.hactive = { 1024, 1024, 1024 },
    +	.hfront_porch = { 30, 106, 125 },
    +	.hback_porch = { 30, 106, 125 },
    +	.hsync_len = { 30, 108, 126 },
    +	.vactive = { 600, 600, 600 },
    +	.vfront_porch = { 3, 12, 67},
    +	.vback_porch = { 3, 12, 67 },
    +	.vsync_len = { 4, 11, 66 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc edt_etml0700y5dha = {
    +	.timings = &edt_etml0700y5dha_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 155,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode edt_etmv570g2dhu_mode = {
    +	.clock = 25175,
    +	.hdisplay = 640,
    +	.hsync_start = 640,
    +	.hsync_end = 640 + 16,
    +	.htotal = 640 + 16 + 30 + 114,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 10,
    +	.vsync_end = 480 + 10 + 3,
    +	.vtotal = 480 + 10 + 3 + 35,
    +	.flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC,
    +};
    +
    +static const struct panel_desc edt_etmv570g2dhu = {
    +	.modes = &edt_etmv570g2dhu_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 115,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing eink_vb3300_kca_timing = {
    +	.pixelclock = { 40000000, 40000000, 40000000 },
    +	.hactive = { 334, 334, 334 },
    +	.hfront_porch = { 1, 1, 1 },
    +	.hback_porch = { 1, 1, 1 },
    +	.hsync_len = { 1, 1, 1 },
    +	.vactive = { 1405, 1405, 1405 },
    +	.vfront_porch = { 1, 1, 1 },
    +	.vback_porch = { 1, 1, 1 },
    +	.vsync_len = { 1, 1, 1 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE,
    +};
    +
    +static const struct panel_desc eink_vb3300_kca = {
    +	.timings = &eink_vb3300_kca_timing,
    +	.num_timings = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 157,
    +		.height = 209,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing evervision_vgg804821_timing = {
    +	.pixelclock = { 27600000, 33300000, 50000000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 40, 66, 70 },
    +	.hback_porch = { 40, 67, 70 },
    +	.hsync_len = { 40, 67, 70 },
    +	.vactive = { 480, 480, 480 },
    +	.vfront_porch = { 6, 10, 10 },
    +	.vback_porch = { 7, 11, 11 },
    +	.vsync_len = { 7, 11, 11 },
    +	.flags = DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_HIGH |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
    +		 DISPLAY_FLAGS_SYNC_NEGEDGE,
    +};
    +
    +static const struct panel_desc evervision_vgg804821 = {
    +	.timings = &evervision_vgg804821_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 108,
    +		.height = 64,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE,
     };
     
     static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = {
    @@ -1087,7 +1868,6 @@
     	.vsync_start = 480 + 37,
     	.vsync_end = 480 + 37 + 2,
     	.vtotal = 480 + 37 + 2 + 8,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc foxlink_fl500wvr00_a0t = {
    @@ -1099,6 +1879,68 @@
     		.height = 65,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +};
    +
    +static const struct drm_display_mode frida_frd350h54004_modes[] = {
    +	{ /* 60 Hz */
    +		.clock = 6000,
    +		.hdisplay = 320,
    +		.hsync_start = 320 + 44,
    +		.hsync_end = 320 + 44 + 16,
    +		.htotal = 320 + 44 + 16 + 20,
    +		.vdisplay = 240,
    +		.vsync_start = 240 + 2,
    +		.vsync_end = 240 + 2 + 6,
    +		.vtotal = 240 + 2 + 6 + 2,
    +		.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +	},
    +	{ /* 50 Hz */
    +		.clock = 5400,
    +		.hdisplay = 320,
    +		.hsync_start = 320 + 56,
    +		.hsync_end = 320 + 56 + 16,
    +		.htotal = 320 + 56 + 16 + 40,
    +		.vdisplay = 240,
    +		.vsync_start = 240 + 2,
    +		.vsync_end = 240 + 2 + 6,
    +		.vtotal = 240 + 2 + 6 + 2,
    +		.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +	},
    +};
    +
    +static const struct panel_desc frida_frd350h54004 = {
    +	.modes = frida_frd350h54004_modes,
    +	.num_modes = ARRAY_SIZE(frida_frd350h54004_modes),
    +	.bpc = 8,
    +	.size = {
    +		.width = 77,
    +		.height = 64,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode friendlyarm_hd702e_mode = {
    +	.clock		= 67185,
    +	.hdisplay	= 800,
    +	.hsync_start	= 800 + 20,
    +	.hsync_end	= 800 + 20 + 24,
    +	.htotal		= 800 + 20 + 24 + 20,
    +	.vdisplay	= 1280,
    +	.vsync_start	= 1280 + 4,
    +	.vsync_end	= 1280 + 4 + 8,
    +	.vtotal		= 1280 + 4 + 8 + 4,
    +	.flags		= DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc friendlyarm_hd702e = {
    +	.modes = &friendlyarm_hd702e_mode,
    +	.num_modes = 1,
    +	.size = {
    +		.width	= 94,
    +		.height	= 151,
    +	},
     };
     
     static const struct drm_display_mode giantplus_gpg482739qs5_mode = {
    @@ -1111,7 +1953,6 @@
     	.vsync_start = 272 + 8,
     	.vsync_end = 272 + 8 + 1,
     	.vtotal = 272 + 8 + 1 + 8,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc giantplus_gpg482739qs5 = {
    @@ -1123,6 +1964,31 @@
     		.height = 54,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +};
    +
    +static const struct display_timing giantplus_gpm940b0_timing = {
    +	.pixelclock = { 13500000, 27000000, 27500000 },
    +	.hactive = { 320, 320, 320 },
    +	.hfront_porch = { 14, 686, 718 },
    +	.hback_porch = { 50, 70, 255 },
    +	.hsync_len = { 1, 1, 1 },
    +	.vactive = { 240, 240, 240 },
    +	.vfront_porch = { 1, 1, 179 },
    +	.vback_porch = { 1, 21, 31 },
    +	.vsync_len = { 1, 1, 6 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
    +};
    +
    +static const struct panel_desc giantplus_gpm940b0 = {
    +	.timings = &giantplus_gpm940b0_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 60,
    +		.height = 45,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_3X8,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE,
     };
     
     static const struct display_timing hannstar_hsd070pww1_timing = {
    @@ -1152,6 +2018,7 @@
     		.height = 94,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing hannstar_hsd100pxn1_timing = {
    @@ -1176,6 +2043,32 @@
     		.height = 152,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing hannstar_hsd101pww2_timing = {
    +	.pixelclock = { 64300000, 71100000, 82000000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 1, 1, 10 },
    +	.hback_porch = { 1, 1, 10 },
    +	.hsync_len = { 58, 158, 661 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 1, 1, 10 },
    +	.vback_porch = { 1, 1, 10 },
    +	.vsync_len = { 1, 21, 203 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc hannstar_hsd101pww2 = {
    +	.timings = &hannstar_hsd101pww2_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode hitachi_tx23d38vm0caa_mode = {
    @@ -1188,7 +2081,6 @@
     	.vsync_start = 480 + 16,
     	.vsync_end = 480 + 16 + 13,
     	.vtotal = 480 + 16 + 13 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc hitachi_tx23d38vm0caa = {
    @@ -1215,7 +2107,6 @@
     	.vsync_start = 272 + 2,
     	.vsync_end = 272 + 2 + 10,
     	.vtotal = 272 + 2 + 10 + 2,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
     };
     
    @@ -1228,6 +2119,7 @@
     		.height = 54,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
     };
     
    @@ -1241,7 +2133,6 @@
     	.vsync_start = 480 + 22,
     	.vsync_end = 480 + 22 + 10,
     	.vtotal = 480 + 22 + 23 + 10,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc innolux_at070tn92 = {
    @@ -1270,7 +2161,7 @@
     static const struct panel_desc innolux_g070y2_l01 = {
     	.timings = &innolux_g070y2_l01_timing,
     	.num_timings = 1,
    -	.bpc = 6,
    +	.bpc = 8,
     	.size = {
     		.width = 152,
     		.height = 91,
    @@ -1282,18 +2173,45 @@
     		.unprepare = 800,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode innolux_g070y2_t02_mode = {
    +	.clock = 33333,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 210,
    +	.hsync_end = 800 + 210 + 20,
    +	.htotal = 800 + 210 + 20 + 46,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 22,
    +	.vsync_end = 480 + 22 + 10,
    +	.vtotal = 480 + 22 + 23 + 10,
    +};
    +
    +static const struct panel_desc innolux_g070y2_t02 = {
    +	.modes = &innolux_g070y2_t02_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 152,
    +		.height = 92,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct display_timing innolux_g101ice_l01_timing = {
     	.pixelclock = { 60400000, 71100000, 74700000 },
     	.hactive = { 1280, 1280, 1280 },
    -	.hfront_porch = { 41, 80, 100 },
    -	.hback_porch = { 40, 79, 99 },
    -	.hsync_len = { 1, 1, 1 },
    +	.hfront_porch = { 30, 60, 70 },
    +	.hback_porch = { 30, 60, 70 },
    +	.hsync_len = { 22, 40, 60 },
     	.vactive = { 800, 800, 800 },
    -	.vfront_porch = { 5, 11, 14 },
    -	.vback_porch = { 4, 11, 14 },
    -	.vsync_len = { 1, 1, 1 },
    +	.vfront_porch = { 3, 8, 14 },
    +	.vback_porch = { 3, 8, 14 },
    +	.vsync_len = { 4, 7, 12 },
     	.flags = DISPLAY_FLAGS_DE_HIGH,
     };
     
    @@ -1310,6 +2228,8 @@
     		.disable = 200,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing innolux_g121i1_l01_timing = {
    @@ -1336,7 +2256,8 @@
     		.enable = 200,
     		.disable = 20,
     	},
    -	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode innolux_g121x1_l03_mode = {
    @@ -1349,7 +2270,6 @@
     	.vsync_start = 768 + 38,
     	.vsync_end = 768 + 38 + 1,
     	.vtotal = 768 + 38 + 1 + 0,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
     };
     
    @@ -1366,30 +2286,9 @@
     		.unprepare = 200,
     		.disable = 400,
     	},
    -};
    -
    -static const struct drm_display_mode innolux_n116bge_mode = {
    -	.clock = 76420,
    -	.hdisplay = 1366,
    -	.hsync_start = 1366 + 136,
    -	.hsync_end = 1366 + 136 + 30,
    -	.htotal = 1366 + 136 + 30 + 60,
    -	.vdisplay = 768,
    -	.vsync_start = 768 + 8,
    -	.vsync_end = 768 + 8 + 12,
    -	.vtotal = 768 + 8 + 12 + 12,
    -	.vrefresh = 60,
    -	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    -};
    -
    -static const struct panel_desc innolux_n116bge = {
    -	.modes = &innolux_n116bge_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 256,
    -		.height = 144,
    -	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode innolux_n156bge_l21_mode = {
    @@ -1402,7 +2301,6 @@
     	.vsync_start = 768 + 2,
     	.vsync_end = 768 + 2 + 6,
     	.vtotal = 768 + 2 + 6 + 12,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc innolux_n156bge_l21 = {
    @@ -1413,33 +2311,9 @@
     		.width = 344,
     		.height = 193,
     	},
    -};
    -
    -static const struct drm_display_mode innolux_tv123wam_mode = {
    -	.clock = 206016,
    -	.hdisplay = 2160,
    -	.hsync_start = 2160 + 48,
    -	.hsync_end = 2160 + 48 + 32,
    -	.htotal = 2160 + 48 + 32 + 80,
    -	.vdisplay = 1440,
    -	.vsync_start = 1440 + 3,
    -	.vsync_end = 1440 + 3 + 10,
    -	.vtotal = 1440 + 3 + 10 + 27,
    -	.vrefresh = 60,
    -	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
    -};
    -
    -static const struct panel_desc innolux_tv123wam = {
    -	.modes = &innolux_tv123wam_mode,
    -	.num_modes = 1,
    -	.bpc = 8,
    -	.size = {
    -		.width = 259,
    -		.height = 173,
    -	},
    -	.delay = {
    -		.unprepare = 500,
    -	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode innolux_zj070na_01p_mode = {
    @@ -1452,7 +2326,6 @@
     	.vsync_start = 600 + 16,
     	.vsync_end = 600 + 16 + 4,
     	.vtotal = 600 + 16 + 4 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc innolux_zj070na_01p = {
    @@ -1463,6 +2336,61 @@
     		.width = 154,
     		.height = 90,
     	},
    +};
    +
    +static const struct display_timing koe_tx14d24vm1bpa_timing = {
    +	.pixelclock = { 5580000, 5850000, 6200000 },
    +	.hactive = { 320, 320, 320 },
    +	.hfront_porch = { 30, 30, 30 },
    +	.hback_porch = { 30, 30, 30 },
    +	.hsync_len = { 1, 5, 17 },
    +	.vactive = { 240, 240, 240 },
    +	.vfront_porch = { 6, 6, 6 },
    +	.vback_porch = { 5, 5, 5 },
    +	.vsync_len = { 1, 2, 11 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc koe_tx14d24vm1bpa = {
    +	.timings = &koe_tx14d24vm1bpa_timing,
    +	.num_timings = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 115,
    +		.height = 86,
    +	},
    +};
    +
    +static const struct display_timing koe_tx26d202vm0bwa_timing = {
    +	.pixelclock = { 151820000, 156720000, 159780000 },
    +	.hactive = { 1920, 1920, 1920 },
    +	.hfront_porch = { 105, 130, 142 },
    +	.hback_porch = { 45, 70, 82 },
    +	.hsync_len = { 30, 30, 30 },
    +	.vactive = { 1200, 1200, 1200},
    +	.vfront_porch = { 3, 5, 10 },
    +	.vback_porch = { 2, 5, 10 },
    +	.vsync_len = { 5, 5, 5 },
    +	.flags = DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc koe_tx26d202vm0bwa = {
    +	.timings = &koe_tx26d202vm0bwa_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.delay = {
    +		.prepare = 1000,
    +		.enable = 1000,
    +		.unprepare = 1000,
    +		.disable = 1000,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing koe_tx31d200vm0baa_timing = {
    @@ -1487,6 +2415,7 @@
     		.height = 109,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing kyo_tcg121xglp_timing = {
    @@ -1511,6 +2440,30 @@
     		.height = 184,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode lemaker_bl035_rgb_002_mode = {
    +	.clock = 7000,
    +	.hdisplay = 320,
    +	.hsync_start = 320 + 20,
    +	.hsync_end = 320 + 20 + 30,
    +	.htotal = 320 + 20 + 30 + 38,
    +	.vdisplay = 240,
    +	.vsync_start = 240 + 4,
    +	.vsync_end = 240 + 4 + 3,
    +	.vtotal = 240 + 4 + 3 + 15,
    +};
    +
    +static const struct panel_desc lemaker_bl035_rgb_002 = {
    +	.modes = &lemaker_bl035_rgb_002_mode,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 70,
    +		.height = 52,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_LOW,
     };
     
     static const struct drm_display_mode lg_lb070wv8_mode = {
    @@ -1523,109 +2476,203 @@
     	.vsync_start = 480 + 10,
     	.vsync_end = 480 + 10 + 25,
     	.vtotal = 480 + 10 + 25 + 10,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc lg_lb070wv8 = {
     	.modes = &lg_lb070wv8_mode,
     	.num_modes = 1,
    -	.bpc = 16,
    +	.bpc = 8,
     	.size = {
     		.width = 151,
     		.height = 91,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    -};
    -
    -static const struct drm_display_mode lg_lp079qx1_sp0v_mode = {
    -	.clock = 200000,
    -	.hdisplay = 1536,
    -	.hsync_start = 1536 + 12,
    -	.hsync_end = 1536 + 12 + 16,
    -	.htotal = 1536 + 12 + 16 + 48,
    -	.vdisplay = 2048,
    -	.vsync_start = 2048 + 8,
    -	.vsync_end = 2048 + 8 + 4,
    -	.vtotal = 2048 + 8 + 4 + 8,
    -	.vrefresh = 60,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode lincolntech_lcd185_101ct_mode = {
    +	.clock = 155127,
    +	.hdisplay = 1920,
    +	.hsync_start = 1920 + 128,
    +	.hsync_end = 1920 + 128 + 20,
    +	.htotal = 1920 + 128 + 20 + 12,
    +	.vdisplay = 1200,
    +	.vsync_start = 1200 + 19,
    +	.vsync_end = 1200 + 19 + 4,
    +	.vtotal = 1200 + 19 + 4 + 20,
    +};
    +
    +static const struct panel_desc lincolntech_lcd185_101ct = {
    +	.modes = &lincolntech_lcd185_101ct_mode,
    +	.bpc = 8,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.delay = {
    +		.prepare = 50,
    +		.disable = 50,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing logictechno_lt161010_2nh_timing = {
    +	.pixelclock = { 26400000, 33300000, 46800000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 16, 210, 354 },
    +	.hback_porch = { 46, 46, 46 },
    +	.hsync_len = { 1, 20, 40 },
    +	.vactive = { 480, 480, 480 },
    +	.vfront_porch = { 7, 22, 147 },
    +	.vback_porch = { 23, 23, 23 },
    +	.vsync_len = { 1, 10, 20 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc logictechno_lt161010_2nh = {
    +	.timings = &logictechno_lt161010_2nh_timing,
    +	.num_timings = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		     DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing logictechno_lt170410_2whc_timing = {
    +	.pixelclock = { 68900000, 71100000, 73400000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 23, 60, 71 },
    +	.hback_porch = { 23, 60, 71 },
    +	.hsync_len = { 15, 40, 47 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 5, 7, 10 },
    +	.vback_porch = { 5, 7, 10 },
    +	.vsync_len = { 6, 9, 12 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc logictechno_lt170410_2whc = {
    +	.timings = &logictechno_lt170410_2whc_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode logictechno_lttd800480070_l2rt_mode = {
    +	.clock = 33000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 112,
    +	.hsync_end = 800 + 112 + 3,
    +	.htotal = 800 + 112 + 3 + 85,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 38,
    +	.vsync_end = 480 + 38 + 3,
    +	.vtotal = 480 + 38 + 3 + 29,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    -static const struct panel_desc lg_lp079qx1_sp0v = {
    -	.modes = &lg_lp079qx1_sp0v_mode,
    -	.num_modes = 1,
    -	.size = {
    -		.width = 129,
    -		.height = 171,
    -	},
    -};
    -
    -static const struct drm_display_mode lg_lp097qx1_spa1_mode = {
    -	.clock = 205210,
    -	.hdisplay = 2048,
    -	.hsync_start = 2048 + 150,
    -	.hsync_end = 2048 + 150 + 5,
    -	.htotal = 2048 + 150 + 5 + 5,
    -	.vdisplay = 1536,
    -	.vsync_start = 1536 + 3,
    -	.vsync_end = 1536 + 3 + 1,
    -	.vtotal = 1536 + 3 + 1 + 9,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc lg_lp097qx1_spa1 = {
    -	.modes = &lg_lp097qx1_spa1_mode,
    -	.num_modes = 1,
    -	.size = {
    -		.width = 208,
    -		.height = 147,
    -	},
    -};
    -
    -static const struct drm_display_mode lg_lp120up1_mode = {
    -	.clock = 162300,
    -	.hdisplay = 1920,
    -	.hsync_start = 1920 + 40,
    -	.hsync_end = 1920 + 40 + 40,
    -	.htotal = 1920 + 40 + 40+ 80,
    -	.vdisplay = 1280,
    -	.vsync_start = 1280 + 4,
    -	.vsync_end = 1280 + 4 + 4,
    -	.vtotal = 1280 + 4 + 4 + 12,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc lg_lp120up1 = {
    -	.modes = &lg_lp120up1_mode,
    -	.num_modes = 1,
    -	.bpc = 8,
    -	.size = {
    -		.width = 267,
    -		.height = 183,
    -	},
    -};
    -
    -static const struct drm_display_mode lg_lp129qe_mode = {
    -	.clock = 285250,
    -	.hdisplay = 2560,
    -	.hsync_start = 2560 + 48,
    -	.hsync_end = 2560 + 48 + 32,
    -	.htotal = 2560 + 48 + 32 + 80,
    -	.vdisplay = 1700,
    -	.vsync_start = 1700 + 3,
    -	.vsync_end = 1700 + 3 + 10,
    -	.vtotal = 1700 + 3 + 10 + 36,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc lg_lp129qe = {
    -	.modes = &lg_lp129qe_mode,
    -	.num_modes = 1,
    -	.bpc = 8,
    -	.size = {
    -		.width = 272,
    -		.height = 181,
    -	},
    +static const struct panel_desc logictechno_lttd800480070_l2rt = {
    +	.modes = &logictechno_lttd800480070_l2rt_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.delay = {
    +		.prepare = 45,
    +		.enable = 100,
    +		.disable = 100,
    +		.unprepare = 45
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode logictechno_lttd800480070_l6wh_rt_mode = {
    +	.clock = 33000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 154,
    +	.hsync_end = 800 + 154 + 3,
    +	.htotal = 800 + 154 + 3 + 43,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 47,
    +	.vsync_end = 480 + 47 + 3,
    +	.vtotal = 480 + 47 + 3 + 20,
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc logictechno_lttd800480070_l6wh_rt = {
    +	.modes = &logictechno_lttd800480070_l6wh_rt_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.delay = {
    +		.prepare = 45,
    +		.enable = 100,
    +		.disable = 100,
    +		.unprepare = 45
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode logicpd_type_28_mode = {
    +	.clock = 9107,
    +	.hdisplay = 480,
    +	.hsync_start = 480 + 3,
    +	.hsync_end = 480 + 3 + 42,
    +	.htotal = 480 + 3 + 42 + 2,
    +
    +	.vdisplay = 272,
    +	.vsync_start = 272 + 2,
    +	.vsync_end = 272 + 2 + 11,
    +	.vtotal = 272 + 2 + 11 + 3,
    +	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
    +};
    +
    +static const struct panel_desc logicpd_type_28 = {
    +	.modes = &logicpd_type_28_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 105,
    +		.height = 67,
    +	},
    +	.delay = {
    +		.prepare = 200,
    +		.enable = 200,
    +		.unprepare = 200,
    +		.disable = 200,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
    +		     DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct drm_display_mode mitsubishi_aa070mc01_mode = {
    @@ -1638,7 +2685,6 @@
     	.vsync_start = 480 + 0,
     	.vsync_end = 480 + 48 + 1,
     	.vtotal = 480 + 48 + 1 + 0,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
     };
     
    @@ -1657,7 +2703,157 @@
     		.disable = 400,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +};
    +
    +static const struct drm_display_mode microtips_mf_101hiebcaf0_mode = {
    +	.clock = 150275,
    +	.hdisplay = 1920,
    +	.hsync_start = 1920 + 32,
    +	.hsync_end = 1920 + 32 + 52,
    +	.htotal = 1920 + 32 + 52 + 24,
    +	.vdisplay = 1200,
    +	.vsync_start = 1200 + 24,
    +	.vsync_end = 1200 + 24 + 8,
    +	.vtotal = 1200 + 24 + 8 + 3,
    +};
    +
    +static const struct panel_desc microtips_mf_101hiebcaf0 = {
    +	.modes = &microtips_mf_101hiebcaf0_mode,
    +	.bpc = 8,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.delay = {
    +		.prepare = 50,
    +		.disable = 50,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode microtips_mf_103hieb0ga0_mode = {
    +	.clock = 93301,
    +	.hdisplay = 1920,
    +	.hsync_start = 1920 + 72,
    +	.hsync_end = 1920 + 72 + 72,
    +	.htotal = 1920 + 72 + 72 + 72,
    +	.vdisplay = 720,
    +	.vsync_start = 720 + 3,
    +	.vsync_end = 720 + 3 + 3,
    +	.vtotal = 720 + 3 + 3 + 2,
    +};
    +
    +static const struct panel_desc microtips_mf_103hieb0ga0 = {
    +	.modes = &microtips_mf_103hieb0ga0_mode,
    +	.bpc = 8,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 244,
    +		.height = 92,
    +	},
    +	.delay = {
    +		.prepare = 50,
    +		.disable = 50,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing multi_inno_mi0700s4t_6_timing = {
    +	.pixelclock = { 29000000, 33000000, 38000000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 180, 210, 240 },
    +	.hback_porch = { 16, 16, 16 },
    +	.hsync_len = { 30, 30, 30 },
    +	.vactive = { 480, 480, 480 },
    +	.vfront_porch = { 12, 22, 32 },
    +	.vback_porch = { 10, 10, 10 },
    +	.vsync_len = { 13, 13, 13 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc multi_inno_mi0700s4t_6 = {
    +	.timings = &multi_inno_mi0700s4t_6_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		     DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing multi_inno_mi0800ft_9_timing = {
    +	.pixelclock = { 32000000, 40000000, 50000000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 16, 210, 354 },
    +	.hback_porch = { 6, 26, 45 },
    +	.hsync_len = { 1, 20, 40 },
    +	.vactive = { 600, 600, 600 },
    +	.vfront_porch = { 1, 12, 77 },
    +	.vback_porch = { 3, 13, 22 },
    +	.vsync_len = { 1, 10, 20 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc multi_inno_mi0800ft_9 = {
    +	.timings = &multi_inno_mi0800ft_9_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 162,
    +		.height = 122,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		     DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing multi_inno_mi1010ait_1cp_timing = {
    +	.pixelclock = { 68900000, 70000000, 73400000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 30, 60, 71 },
    +	.hback_porch = { 30, 60, 71 },
    +	.hsync_len = { 10, 10, 48 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 5, 10, 10 },
    +	.vback_porch = { 5, 10, 10 },
    +	.vsync_len = { 5, 6, 13 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH,
    +};
    +
    +static const struct panel_desc multi_inno_mi1010ait_1cp = {
    +	.timings = &multi_inno_mi1010ait_1cp_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 136,
    +	},
    +	.delay = {
    +		.enable = 50,
    +		.disable = 50,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing nec_nl12880bc20_05_timing = {
    @@ -1685,6 +2881,7 @@
     		.disable = 50,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode nec_nl4827hc19_05b_mode = {
    @@ -1697,7 +2894,6 @@
     	.vsync_start = 272 + 2,
     	.vsync_end = 272 + 2 + 4,
     	.vtotal = 272 + 2 + 4 + 2,
    -	.vrefresh = 74,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1723,7 +2919,6 @@
     	.vsync_start = 600 + 127,
     	.vsync_end = 600 + 127 + 20,
     	.vtotal = 600 + 127 + 20 + 3,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc netron_dy_e231732 = {
    @@ -1746,7 +2941,6 @@
     	.vsync_start = 272 + 2,
     	.vsync_end = 272 + 2 + 10,
     	.vtotal = 272 + 2 + 10 + 2,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1761,6 +2955,7 @@
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
     		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct display_timing nlt_nl192108ac18_02d_timing = {
    @@ -1787,6 +2982,7 @@
     		.unprepare = 500,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode nvd_9128_mode = {
    @@ -1810,6 +3006,7 @@
     		.height = 88,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct display_timing okaya_rs800480t_7x0gp_timing = {
    @@ -1852,7 +3049,6 @@
     	.vsync_start = 272 + 8,
     	.vsync_end = 272 + 8 + 5,
     	.vtotal = 272 + 8 + 5 + 3,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc olimex_lcd_olinuxino_43ts = {
    @@ -1880,7 +3076,6 @@
     	.vsync_start = 483,
     	.vsync_end = 493,
     	.vtotal = 500,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1897,6 +3092,32 @@
     		.height = 83,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +};
    +
    +static const struct drm_display_mode ortustech_com37h3m_mode  = {
    +	.clock = 22230,
    +	.hdisplay = 480,
    +	.hsync_start = 480 + 40,
    +	.hsync_end = 480 + 40 + 10,
    +	.htotal = 480 + 40 + 10 + 40,
    +	.vdisplay = 640,
    +	.vsync_start = 640 + 4,
    +	.vsync_end = 640 + 4 + 2,
    +	.vtotal = 640 + 4 + 2 + 4,
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc ortustech_com37h3m = {
    +	.modes = &ortustech_com37h3m_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 56,	/* 56.16mm */
    +		.height = 75,	/* 74.88mm */
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
     };
     
     static const struct drm_display_mode ortustech_com43h4m85ulc_mode  = {
    @@ -1909,19 +3130,19 @@
     	.vsync_start = 800 + 3,
     	.vsync_end = 800 + 3 + 3,
     	.vtotal = 800 + 3 + 3 + 3,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc ortustech_com43h4m85ulc = {
     	.modes = &ortustech_com43h4m85ulc_mode,
     	.num_modes = 1,
    -	.bpc = 8,
    +	.bpc = 6,
     	.size = {
     		.width = 56,
     		.height = 93,
     	},
    -	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct drm_display_mode osddisplays_osd070t1718_19ts_mode  = {
    @@ -1934,7 +3155,6 @@
     	.vsync_start = 480 + 22,
     	.vsync_end = 480 + 22 + 13,
     	.vtotal = 480 + 22 + 13 + 10,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -1947,7 +3167,58 @@
     		.height = 91,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    -	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE |
    +		DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode pda_91_00156_a0_mode = {
    +	.clock = 33300,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 1,
    +	.hsync_end = 800 + 1 + 64,
    +	.htotal = 800 + 1 + 64 + 64,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 1,
    +	.vsync_end = 480 + 1 + 23,
    +	.vtotal = 480 + 1 + 23 + 22,
    +};
    +
    +static const struct panel_desc pda_91_00156_a0  = {
    +	.modes = &pda_91_00156_a0_mode,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 152,
    +		.height = 91,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +};
    +
    +static const struct drm_display_mode powertip_ph800480t013_idf02_mode = {
    +	.clock = 24750,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 54,
    +	.hsync_end = 800 + 54 + 2,
    +	.htotal = 800 + 54 + 2 + 44,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 49,
    +	.vsync_end = 480 + 49 + 2,
    +	.vtotal = 480 + 49 + 2 + 22,
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc powertip_ph800480t013_idf02  = {
    +	.modes = &powertip_ph800480t013_idf02_mode,
    +	.num_modes = 1,
    +	.size = {
    +		.width = 152,
    +		.height = 91,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		     DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
     };
     
     static const struct drm_display_mode qd43003c0_40_mode = {
    @@ -1960,7 +3231,6 @@
     	.vsync_start = 272 + 4,
     	.vsync_end = 272 + 4 + 10,
     	.vtotal = 272 + 4 + 10 + 2,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc qd43003c0_40 = {
    @@ -1972,6 +3242,82 @@
     		.height = 53,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +};
    +
    +static const struct drm_display_mode qishenglong_gopher2b_lcd_modes[] = {
    +	{ /* 60 Hz */
    +		.clock = 10800,
    +		.hdisplay = 480,
    +		.hsync_start = 480 + 77,
    +		.hsync_end = 480 + 77 + 41,
    +		.htotal = 480 + 77 + 41 + 2,
    +		.vdisplay = 272,
    +		.vsync_start = 272 + 16,
    +		.vsync_end = 272 + 16 + 10,
    +		.vtotal = 272 + 16 + 10 + 2,
    +		.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +	},
    +	{ /* 50 Hz */
    +		.clock = 10800,
    +		.hdisplay = 480,
    +		.hsync_start = 480 + 17,
    +		.hsync_end = 480 + 17 + 41,
    +		.htotal = 480 + 17 + 41 + 2,
    +		.vdisplay = 272,
    +		.vsync_start = 272 + 116,
    +		.vsync_end = 272 + 116 + 10,
    +		.vtotal = 272 + 116 + 10 + 2,
    +		.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +	},
    +};
    +
    +static const struct panel_desc qishenglong_gopher2b_lcd = {
    +	.modes = qishenglong_gopher2b_lcd_modes,
    +	.num_modes = ARRAY_SIZE(qishenglong_gopher2b_lcd_modes),
    +	.bpc = 8,
    +	.size = {
    +		.width = 95,
    +		.height = 54,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct drm_display_mode raspberrypi_7inch_mode = {
    +	.clock = 28569600 / 1000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 48, //848
    +	.hsync_end = 800 + 48 + 32, //880
    +	.htotal = 800 + 48 + 32 + 80, //960
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 3, //487
    +	.vsync_end = 480 + 3 + 7, //450
    +	.vtotal = 480 + 3 + 7 + 6, //496
    +
    +	.crtc_clock = 28569600 / 1000,
    +	.crtc_hdisplay = 800,
    +	.crtc_hsync_start = 800 + 48, //848
    +	.crtc_hsync_end = 800 + 48 + 32, //880
    +	.crtc_htotal = 800 + 48 + 32 + 80, //960
    +	.crtc_vdisplay = 480,
    +	.crtc_vsync_start = 480 + 3, //487
    +	.crtc_vsync_end = 480 + 3 + 7, //450
    +	.crtc_vtotal = 480 + 3 + 7 + 6, //496
    +
    +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +};
    +
    +static const struct panel_desc raspberrypi_7inch = {
    +	.modes = &raspberrypi_7inch_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.connector_type = DRM_MODE_CONNECTOR_DSI,
     };
     
     static const struct display_timing rocktech_rk070er9427_timing = {
    @@ -2014,11 +3360,11 @@
     	.vsync_start = 800 + 2,
     	.vsync_end = 800 + 2 + 5,
     	.vtotal = 800 + 2 + 5 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc rocktech_rk101ii01d_ct = {
     	.modes = &rocktech_rk101ii01d_ct_mode,
    +	.bpc = 8,
     	.num_modes = 1,
     	.size = {
     		.width = 217,
    @@ -2030,28 +3376,38 @@
     	},
     	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    -};
    -
    -static const struct drm_display_mode samsung_lsn122dl01_c01_mode = {
    -	.clock = 271560,
    -	.hdisplay = 2560,
    -	.hsync_start = 2560 + 48,
    -	.hsync_end = 2560 + 48 + 32,
    -	.htotal = 2560 + 48 + 32 + 80,
    -	.vdisplay = 1600,
    -	.vsync_start = 1600 + 2,
    -	.vsync_end = 1600 + 2 + 5,
    -	.vtotal = 1600 + 2 + 5 + 57,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc samsung_lsn122dl01_c01 = {
    -	.modes = &samsung_lsn122dl01_c01_mode,
    -	.num_modes = 1,
    -	.size = {
    -		.width = 263,
    -		.height = 164,
    -	},
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing samsung_ltl101al01_timing = {
    +	.pixelclock = { 66663000, 66663000, 66663000 },
    +	.hactive = { 1280, 1280, 1280 },
    +	.hfront_porch = { 18, 18, 18 },
    +	.hback_porch = { 36, 36, 36 },
    +	.hsync_len = { 16, 16, 16 },
    +	.vactive = { 800, 800, 800 },
    +	.vfront_porch = { 4, 4, 4 },
    +	.vback_porch = { 16, 16, 16 },
    +	.vsync_len = { 3, 3, 3 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
    +};
    +
    +static const struct panel_desc samsung_ltl101al01 = {
    +	.timings = &samsung_ltl101al01_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 217,
    +		.height = 135,
    +	},
    +	.delay = {
    +		.prepare = 40,
    +		.enable = 300,
    +		.disable = 200,
    +		.unprepare = 600,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode samsung_ltn101nt05_mode = {
    @@ -2064,7 +3420,6 @@
     	.vsync_start = 600 + 3,
     	.vsync_end = 600 + 3 + 6,
     	.vtotal = 600 + 3 + 6 + 61,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc samsung_ltn101nt05 = {
    @@ -2075,29 +3430,59 @@
     		.width = 223,
     		.height = 125,
     	},
    -};
    -
    -static const struct drm_display_mode samsung_ltn140at29_301_mode = {
    -	.clock = 76300,
    -	.hdisplay = 1366,
    -	.hsync_start = 1366 + 64,
    -	.hsync_end = 1366 + 64 + 48,
    -	.htotal = 1366 + 64 + 48 + 128,
    -	.vdisplay = 768,
    -	.vsync_start = 768 + 2,
    -	.vsync_end = 768 + 2 + 5,
    -	.vtotal = 768 + 2 + 5 + 17,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc samsung_ltn140at29_301 = {
    -	.modes = &samsung_ltn140at29_301_mode,
    -	.num_modes = 1,
    -	.bpc = 6,
    -	.size = {
    -		.width = 320,
    -		.height = 187,
    -	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct display_timing satoz_sat050at40h12r2_timing = {
    +	.pixelclock = {33300000, 33300000, 50000000},
    +	.hactive = {800, 800, 800},
    +	.hfront_porch = {16, 210, 354},
    +	.hback_porch = {46, 46, 46},
    +	.hsync_len = {1, 1, 40},
    +	.vactive = {480, 480, 480},
    +	.vfront_porch = {7, 22, 147},
    +	.vback_porch = {23, 23, 23},
    +	.vsync_len = {1, 1, 20},
    +};
    +
    +static const struct panel_desc satoz_sat050at40h12r2 = {
    +	.timings = &satoz_sat050at40h12r2_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 108,
    +		.height = 65,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode sharp_lq070y3dg3b_mode = {
    +	.clock = 33260,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 64,
    +	.hsync_end = 800 + 64 + 128,
    +	.htotal = 800 + 64 + 128 + 64,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 8,
    +	.vsync_end = 480 + 8 + 2,
    +	.vtotal = 480 + 8 + 2 + 35,
    +	.flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
    +};
    +
    +static const struct panel_desc sharp_lq070y3dg3b = {
    +	.modes = &sharp_lq070y3dg3b_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 152,	/* 152.4mm */
    +		.height = 91,	/* 91.4mm */
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
     };
     
     static const struct drm_display_mode sharp_lq035q7db03_mode = {
    @@ -2110,7 +3495,6 @@
     	.vsync_start = 320 + 9,
     	.vsync_end = 320 + 9 + 1,
     	.vtotal = 320 + 9 + 1 + 7,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc sharp_lq035q7db03 = {
    @@ -2146,58 +3530,48 @@
     		.height = 136,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
    -};
    -
    -static const struct display_timing sharp_lq123p1jx31_timing = {
    -	.pixelclock = { 252750000, 252750000, 266604720 },
    -	.hactive = { 2400, 2400, 2400 },
    -	.hfront_porch = { 48, 48, 48 },
    -	.hback_porch = { 80, 80, 84 },
    -	.hsync_len = { 32, 32, 32 },
    -	.vactive = { 1600, 1600, 1600 },
    -	.vfront_porch = { 3, 3, 3 },
    -	.vback_porch = { 33, 33, 120 },
    -	.vsync_len = { 10, 10, 10 },
    -	.flags = DISPLAY_FLAGS_VSYNC_LOW | DISPLAY_FLAGS_HSYNC_LOW,
    -};
    -
    -static const struct panel_desc sharp_lq123p1jx31 = {
    -	.timings = &sharp_lq123p1jx31_timing,
    -	.num_timings = 1,
    -	.bpc = 8,
    -	.size = {
    -		.width = 259,
    -		.height = 173,
    -	},
    -	.delay = {
    -		.prepare = 110,
    -		.enable = 50,
    -		.unprepare = 550,
    -	},
    -};
    -
    -static const struct drm_display_mode sharp_lq150x1lg11_mode = {
    -	.clock = 71100,
    -	.hdisplay = 1024,
    -	.hsync_start = 1024 + 168,
    -	.hsync_end = 1024 + 168 + 64,
    -	.htotal = 1024 + 168 + 64 + 88,
    -	.vdisplay = 768,
    -	.vsync_start = 768 + 37,
    -	.vsync_end = 768 + 37 + 2,
    -	.vtotal = 768 + 37 + 2 + 8,
    -	.vrefresh = 60,
    -};
    -
    -static const struct panel_desc sharp_lq150x1lg11 = {
    -	.modes = &sharp_lq150x1lg11_mode,
    -	.num_modes = 1,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode sharp_ls020b1dd01d_modes[] = {
    +	{ /* 50 Hz */
    +		.clock = 3000,
    +		.hdisplay = 240,
    +		.hsync_start = 240 + 58,
    +		.hsync_end = 240 + 58 + 1,
    +		.htotal = 240 + 58 + 1 + 1,
    +		.vdisplay = 160,
    +		.vsync_start = 160 + 24,
    +		.vsync_end = 160 + 24 + 10,
    +		.vtotal = 160 + 24 + 10 + 6,
    +		.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC,
    +	},
    +	{ /* 60 Hz */
    +		.clock = 3000,
    +		.hdisplay = 240,
    +		.hsync_start = 240 + 8,
    +		.hsync_end = 240 + 8 + 1,
    +		.htotal = 240 + 8 + 1 + 1,
    +		.vdisplay = 160,
    +		.vsync_start = 160 + 24,
    +		.vsync_end = 160 + 24 + 10,
    +		.vtotal = 160 + 24 + 10 + 6,
    +		.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC,
    +	},
    +};
    +
    +static const struct panel_desc sharp_ls020b1dd01d = {
    +	.modes = sharp_ls020b1dd01d_modes,
    +	.num_modes = ARRAY_SIZE(sharp_ls020b1dd01d_modes),
     	.bpc = 6,
     	.size = {
    -		.width = 304,
    -		.height = 228,
    +		.width = 42,
    +		.height = 28,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB565_1X16,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH
    +		   | DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE
    +		   | DRM_BUS_FLAG_SHARP_SIGNALS,
     };
     
     static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = {
    @@ -2210,7 +3584,6 @@
     	.vsync_start = 480 + 1,
     	.vsync_end = 480 + 1 + 23,
     	.vtotal = 480 + 1 + 23 + 22,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc shelly_sca07010_bfn_lnn = {
    @@ -2223,32 +3596,115 @@
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
     };
     
    -static const struct drm_display_mode starry_kr122ea0sra_mode = {
    -	.clock = 147000,
    -	.hdisplay = 1920,
    -	.hsync_start = 1920 + 16,
    -	.hsync_end = 1920 + 16 + 16,
    -	.htotal = 1920 + 16 + 16 + 32,
    -	.vdisplay = 1200,
    -	.vsync_start = 1200 + 15,
    -	.vsync_end = 1200 + 15 + 2,
    -	.vtotal = 1200 + 15 + 2 + 18,
    -	.vrefresh = 60,
    -	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    -};
    -
    -static const struct panel_desc starry_kr122ea0sra = {
    -	.modes = &starry_kr122ea0sra_mode,
    -	.num_modes = 1,
    -	.size = {
    -		.width = 263,
    -		.height = 164,
    +static const struct drm_display_mode starry_kr070pe2t_mode = {
    +	.clock = 33000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 209,
    +	.hsync_end = 800 + 209 + 1,
    +	.htotal = 800 + 209 + 1 + 45,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 22,
    +	.vsync_end = 480 + 22 + 1,
    +	.vtotal = 480 + 22 + 1 + 22,
    +};
    +
    +static const struct panel_desc starry_kr070pe2t = {
    +	.modes = &starry_kr070pe2t_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 152,
    +		.height = 86,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +};
    +
    +static const struct display_timing startek_kd070wvfpa_mode = {
    +	.pixelclock = { 25200000, 27200000, 30500000 },
    +	.hactive = { 800, 800, 800 },
    +	.hfront_porch = { 19, 44, 115 },
    +	.hback_porch = { 5, 16, 101 },
    +	.hsync_len = { 1, 2, 100 },
    +	.vactive = { 480, 480, 480 },
    +	.vfront_porch = { 5, 43, 67 },
    +	.vback_porch = { 5, 5, 67 },
    +	.vsync_len = { 1, 2, 66 },
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE |
    +		 DISPLAY_FLAGS_SYNC_POSEDGE,
    +};
    +
    +static const struct panel_desc startek_kd070wvfpa = {
    +	.timings = &startek_kd070wvfpa_mode,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 152,
    +		.height = 91,
     	},
     	.delay = {
    -		.prepare = 10 + 200,
    -		.enable = 50,
    -		.unprepare = 10 + 500,
    -	},
    +		.prepare = 20,
    +		.enable = 200,
    +		.disable = 200,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.connector_type = DRM_MODE_CONNECTOR_DPI,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH |
    +		     DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE |
    +		     DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE,
    +};
    +
    +static const struct display_timing tsd_tst043015cmhx_timing = {
    +	.pixelclock = { 5000000, 9000000, 12000000 },
    +	.hactive = { 480, 480, 480 },
    +	.hfront_porch = { 4, 5, 65 },
    +	.hback_porch = { 36, 40, 255 },
    +	.hsync_len = { 1, 1, 1 },
    +	.vactive = { 272, 272, 272 },
    +	.vfront_porch = { 2, 8, 97 },
    +	.vback_porch = { 3, 8, 31 },
    +	.vsync_len = { 1, 1, 1 },
    +
    +	.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
    +		 DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE,
    +};
    +
    +static const struct panel_desc tsd_tst043015cmhx = {
    +	.timings = &tsd_tst043015cmhx_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 105,
    +		.height = 67,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
    +};
    +
    +static const struct drm_display_mode tfc_s9700rtwv43tr_01b_mode = {
    +	.clock = 30000,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 39,
    +	.hsync_end = 800 + 39 + 47,
    +	.htotal = 800 + 39 + 47 + 39,
    +	.vdisplay = 480,
    +	.vsync_start = 480 + 13,
    +	.vsync_end = 480 + 13 + 2,
    +	.vtotal = 480 + 13 + 2 + 29,
    +};
    +
    +static const struct panel_desc tfc_s9700rtwv43tr_01b = {
    +	.modes = &tfc_s9700rtwv43tr_01b_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 155,
    +		.height = 90,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
     };
     
     static const struct display_timing tianma_tm070jdhg30_timing = {
    @@ -2273,6 +3729,21 @@
     		.height = 95,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +};
    +
    +static const struct panel_desc tianma_tm070jvhg33 = {
    +	.timings = &tianma_tm070jdhg30_timing,
    +	.num_timings = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 150,
    +		.height = 94,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
     };
     
     static const struct display_timing tianma_tm070rvhg71_timing = {
    @@ -2297,6 +3768,63 @@
     		.height = 86,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode ti_nspire_cx_lcd_mode[] = {
    +	{
    +		.clock = 10000,
    +		.hdisplay = 320,
    +		.hsync_start = 320 + 50,
    +		.hsync_end = 320 + 50 + 6,
    +		.htotal = 320 + 50 + 6 + 38,
    +		.vdisplay = 240,
    +		.vsync_start = 240 + 3,
    +		.vsync_end = 240 + 3 + 1,
    +		.vtotal = 240 + 3 + 1 + 17,
    +		.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +	},
    +};
    +
    +static const struct panel_desc ti_nspire_cx_lcd_panel = {
    +	.modes = ti_nspire_cx_lcd_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 65,
    +		.height = 49,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE,
    +};
    +
    +static const struct drm_display_mode ti_nspire_classic_lcd_mode[] = {
    +	{
    +		.clock = 10000,
    +		.hdisplay = 320,
    +		.hsync_start = 320 + 6,
    +		.hsync_end = 320 + 6 + 6,
    +		.htotal = 320 + 6 + 6 + 6,
    +		.vdisplay = 240,
    +		.vsync_start = 240 + 0,
    +		.vsync_end = 240 + 0 + 1,
    +		.vtotal = 240 + 0 + 1 + 0,
    +		.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
    +	},
    +};
    +
    +static const struct panel_desc ti_nspire_classic_lcd_panel = {
    +	.modes = ti_nspire_classic_lcd_mode,
    +	.num_modes = 1,
    +	/* The grayscale panel has 8 bit for the color .. Y (black) */
    +	.bpc = 8,
    +	.size = {
    +		.width = 71,
    +		.height = 53,
    +	},
    +	/* This is the grayscale bus format */
    +	.bus_format = MEDIA_BUS_FMT_Y8_1X8,
    +	.bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
     };
     
     static const struct drm_display_mode toshiba_lt089ac29000_mode = {
    @@ -2309,7 +3837,6 @@
     	.vsync_start = 768 + 20,
     	.vsync_end = 768 + 20 + 7,
     	.vtotal = 768 + 20 + 7 + 3,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc toshiba_lt089ac29000 = {
    @@ -2319,8 +3846,9 @@
     		.width = 194,
     		.height = 116,
     	},
    -	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    -	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct drm_display_mode tpk_f07a_0102_mode = {
    @@ -2333,7 +3861,6 @@
     	.vsync_start = 480 + 10,
     	.vsync_end = 480 + 10 + 2,
     	.vtotal = 480 + 10 + 2 + 33,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc tpk_f07a_0102 = {
    @@ -2356,7 +3883,6 @@
     	.vsync_start = 600 + 20,
     	.vsync_end = 600 + 20 + 5,
     	.vtotal = 600 + 20 + 5 + 25,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc tpk_f10a_0102 = {
    @@ -2391,6 +3917,7 @@
     		.height = 91,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
     };
     
     static const struct panel_desc urt_umsh_8596md_parallel = {
    @@ -2402,6 +3929,56 @@
     		.height = 91,
     	},
     	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
    +};
    +
    +static const struct drm_display_mode vivax_tpc9150_panel_mode = {
    +	.clock = 60000,
    +	.hdisplay = 1024,
    +	.hsync_start = 1024 + 160,
    +	.hsync_end = 1024 + 160 + 100,
    +	.htotal = 1024 + 160 + 100 + 60,
    +	.vdisplay = 600,
    +	.vsync_start = 600 + 12,
    +	.vsync_end = 600 + 12 + 10,
    +	.vtotal = 600 + 12 + 10 + 13,
    +};
    +
    +static const struct panel_desc vivax_tpc9150_panel = {
    +	.modes = &vivax_tpc9150_panel_mode,
    +	.num_modes = 1,
    +	.bpc = 6,
    +	.size = {
    +		.width = 200,
    +		.height = 115,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode vl050_8048nt_c01_mode = {
    +	.clock = 33333,
    +	.hdisplay = 800,
    +	.hsync_start = 800 + 210,
    +	.hsync_end = 800 + 210 + 20,
    +	.htotal = 800 + 210 + 20 + 46,
    +	.vdisplay =  480,
    +	.vsync_start = 480 + 22,
    +	.vsync_end = 480 + 22 + 10,
    +	.vtotal = 480 + 22 + 10 + 23,
    +	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
    +};
    +
    +static const struct panel_desc vl050_8048nt_c01 = {
    +	.modes = &vl050_8048nt_c01_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 120,
    +		.height = 76,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE,
     };
     
     static const struct drm_display_mode winstar_wf35ltiacd_mode = {
    @@ -2414,7 +3991,6 @@
     	.vsync_start = 240 + 4,
     	.vsync_end = 240 + 4 + 3,
     	.vtotal = 240 + 4 + 3 + 15,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -2429,50 +4005,108 @@
     	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
     };
     
    +static const struct drm_display_mode yes_optoelectronics_ytc700tlag_05_201c_mode = {
    +	.clock = 51200,
    +	.hdisplay = 1024,
    +	.hsync_start = 1024 + 100,
    +	.hsync_end = 1024 + 100 + 100,
    +	.htotal = 1024 + 100 + 100 + 120,
    +	.vdisplay = 600,
    +	.vsync_start = 600 + 10,
    +	.vsync_end = 600 + 10 + 10,
    +	.vtotal = 600 + 10 + 10 + 15,
    +	.flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
    +};
    +
    +static const struct panel_desc yes_optoelectronics_ytc700tlag_05_201c = {
    +	.modes = &yes_optoelectronics_ytc700tlag_05_201c_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 154,
    +		.height = 90,
    +	},
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH,
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
    +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
    +};
    +
    +static const struct drm_display_mode arm_rtsm_mode[] = {
    +	{
    +		.clock = 65000,
    +		.hdisplay = 1024,
    +		.hsync_start = 1024 + 24,
    +		.hsync_end = 1024 + 24 + 136,
    +		.htotal = 1024 + 24 + 136 + 160,
    +		.vdisplay = 768,
    +		.vsync_start = 768 + 3,
    +		.vsync_end = 768 + 3 + 6,
    +		.vtotal = 768 + 3 + 6 + 29,
    +		.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
    +	},
    +};
    +
    +static const struct panel_desc arm_rtsm = {
    +	.modes = arm_rtsm_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 400,
    +		.height = 300,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +};
    +
     static const struct of_device_id platform_of_match[] = {
     	{
    +		.compatible = "ampire,am-1280800n3tzqw-t00h",
    +		.data = &ampire_am_1280800n3tzqw_t00h,
    +	}, {
     		.compatible = "ampire,am-480272h3tmqw-t01h",
     		.data = &ampire_am_480272h3tmqw_t01h,
     	}, {
     		.compatible = "ampire,am800480r3tmqwa1h",
     		.data = &ampire_am800480r3tmqwa1h,
     	}, {
    +		.compatible = "ampire,am800600p5tmqw-tb8h",
    +		.data = &ampire_am800600p5tmqwtb8h,
    +	}, {
    +		.compatible = "arm,rtsm-display",
    +		.data = &arm_rtsm,
    +	}, {
     		.compatible = "armadeus,st0700-adapt",
     		.data = &armadeus_st0700_adapt,
     	}, {
     		.compatible = "auo,b101aw03",
     		.data = &auo_b101aw03,
     	}, {
    -		.compatible = "auo,b101ean01",
    -		.data = &auo_b101ean01,
    -	}, {
     		.compatible = "auo,b101xtn01",
     		.data = &auo_b101xtn01,
     	}, {
    -		.compatible = "auo,b116xw03",
    -		.data = &auo_b116xw03,
    -	}, {
    -		.compatible = "auo,b133htn01",
    -		.data = &auo_b133htn01,
    -	}, {
    -		.compatible = "auo,b133xtn01",
    -		.data = &auo_b133xtn01,
    -	}, {
     		.compatible = "auo,g070vvn01",
     		.data = &auo_g070vvn01,
     	}, {
    -		.compatible = "auo,g101evn01.0",
    -		.data = &auo_g101evn01_0,
    +		.compatible = "auo,g101evn010",
    +		.data = &auo_g101evn010,
     	}, {
     		.compatible = "auo,g104sn02",
     		.data = &auo_g104sn02,
     	}, {
    +		.compatible = "auo,g121ean01",
    +		.data = &auo_g121ean01,
    +	}, {
     		.compatible = "auo,g133han01",
     		.data = &auo_g133han01,
     	}, {
    +		.compatible = "auo,g156xtn01",
    +		.data = &auo_g156xtn01,
    +	}, {
     		.compatible = "auo,g185han01",
     		.data = &auo_g185han01,
     	}, {
    +		.compatible = "auo,g190ean01",
    +		.data = &auo_g190ean01,
    +	}, {
     		.compatible = "auo,p320hvn03",
     		.data = &auo_p320hvn03,
     	}, {
    @@ -2482,11 +4116,26 @@
     		.compatible = "avic,tm070ddh03",
     		.data = &avic_tm070ddh03,
     	}, {
    +		.compatible = "bananapi,s070wv20-ct16",
    +		.data = &bananapi_s070wv20_ct16,
    +	}, {
     		.compatible = "boe,hv070wsa-100",
     		.data = &boe_hv070wsa
     	}, {
    -		.compatible = "boe,nv101wxmn51",
    -		.data = &boe_nv101wxmn51,
    +		.compatible = "cdtech,s043wq26h-ct7",
    +		.data = &cdtech_s043wq26h_ct7,
    +	}, {
    +		.compatible = "cdtech,s070pws19hp-fc21",
    +		.data = &cdtech_s070pws19hp_fc21,
    +	}, {
    +		.compatible = "cdtech,s070swv29hg-dc44",
    +		.data = &cdtech_s070swv29hg_dc44,
    +	}, {
    +		.compatible = "cdtech,s070wv95-ct16",
    +		.data = &cdtech_s070wv95_ct16,
    +	}, {
    +		.compatible = "chefree,ch101olhlwh-002",
    +		.data = &chefree_ch101olhlwh_002,
     	}, {
     		.compatible = "chunghwa,claa070wp03xg",
     		.data = &chunghwa_claa070wp03xg,
    @@ -2497,12 +4146,33 @@
     		.compatible = "chunghwa,claa101wb01",
     		.data = &chunghwa_claa101wb01
     	}, {
    +		.compatible = "dataimage,fg040346dsswbg04",
    +		.data = &dataimage_fg040346dsswbg04,
    +	}, {
    +		.compatible = "dataimage,fg1001l0dsswmg01",
    +		.data = &dataimage_fg1001l0dsswmg01,
    +	}, {
     		.compatible = "dataimage,scf0700c48ggu18",
     		.data = &dataimage_scf0700c48ggu18,
     	}, {
     		.compatible = "dlc,dlc0700yzg-1",
     		.data = &dlc_dlc0700yzg_1,
     	}, {
    +		.compatible = "dlc,dlc1010gig",
    +		.data = &dlc_dlc1010gig,
    +	}, {
    +		.compatible = "edt,et035012dm6",
    +		.data = &edt_et035012dm6,
    +	}, {
    +		.compatible = "edt,etm0350g0dh6",
    +		.data = &edt_etm0350g0dh6,
    +	}, {
    +		.compatible = "edt,etm043080dh6gp",
    +		.data = &edt_etm043080dh6gp,
    +	}, {
    +		.compatible = "edt,etm0430g0dh6",
    +		.data = &edt_etm0430g0dh6,
    +	}, {
     		.compatible = "edt,et057090dhu",
     		.data = &edt_et057090dhu,
     	}, {
    @@ -2518,18 +4188,42 @@
     		.compatible = "edt,etm0700g0edh6",
     		.data = &edt_etm0700g0bdh6,
     	}, {
    +		.compatible = "edt,etml0700y5dha",
    +		.data = &edt_etml0700y5dha,
    +	}, {
    +		.compatible = "edt,etmv570g2dhu",
    +		.data = &edt_etmv570g2dhu,
    +	}, {
    +		.compatible = "eink,vb3300-kca",
    +		.data = &eink_vb3300_kca,
    +	}, {
    +		.compatible = "evervision,vgg804821",
    +		.data = &evervision_vgg804821,
    +	}, {
     		.compatible = "foxlink,fl500wvr00-a0t",
     		.data = &foxlink_fl500wvr00_a0t,
     	}, {
    +		.compatible = "frida,frd350h54004",
    +		.data = &frida_frd350h54004,
    +	}, {
    +		.compatible = "friendlyarm,hd702e",
    +		.data = &friendlyarm_hd702e,
    +	}, {
     		.compatible = "giantplus,gpg482739qs5",
     		.data = &giantplus_gpg482739qs5
     	}, {
    +		.compatible = "giantplus,gpm940b0",
    +		.data = &giantplus_gpm940b0,
    +	}, {
     		.compatible = "hannstar,hsd070pww1",
     		.data = &hannstar_hsd070pww1,
     	}, {
     		.compatible = "hannstar,hsd100pxn1",
     		.data = &hannstar_hsd100pxn1,
     	}, {
    +		.compatible = "hannstar,hsd101pww2",
    +		.data = &hannstar_hsd101pww2,
    +	}, {
     		.compatible = "hit,tx23d38vm0caa",
     		.data = &hitachi_tx23d38vm0caa
     	}, {
    @@ -2542,6 +4236,9 @@
     		.compatible = "innolux,g070y2-l01",
     		.data = &innolux_g070y2_l01,
     	}, {
    +		.compatible = "innolux,g070y2-t02",
    +		.data = &innolux_g070y2_t02,
    +	}, {
     		.compatible = "innolux,g101ice-l01",
     		.data = &innolux_g101ice_l01
     	}, {
    @@ -2551,42 +4248,69 @@
     		.compatible = "innolux,g121x1-l03",
     		.data = &innolux_g121x1_l03,
     	}, {
    -		.compatible = "innolux,n116bge",
    -		.data = &innolux_n116bge,
    -	}, {
     		.compatible = "innolux,n156bge-l21",
     		.data = &innolux_n156bge_l21,
     	}, {
    -		.compatible = "innolux,tv123wam",
    -		.data = &innolux_tv123wam,
    -	}, {
     		.compatible = "innolux,zj070na-01p",
     		.data = &innolux_zj070na_01p,
     	}, {
    +		.compatible = "koe,tx14d24vm1bpa",
    +		.data = &koe_tx14d24vm1bpa,
    +	}, {
    +		.compatible = "koe,tx26d202vm0bwa",
    +		.data = &koe_tx26d202vm0bwa,
    +	}, {
     		.compatible = "koe,tx31d200vm0baa",
     		.data = &koe_tx31d200vm0baa,
     	}, {
     		.compatible = "kyo,tcg121xglp",
     		.data = &kyo_tcg121xglp,
     	}, {
    +		.compatible = "lemaker,bl035-rgb-002",
    +		.data = &lemaker_bl035_rgb_002,
    +	}, {
     		.compatible = "lg,lb070wv8",
     		.data = &lg_lb070wv8,
     	}, {
    -		.compatible = "lg,lp079qx1-sp0v",
    -		.data = &lg_lp079qx1_sp0v,
    -	}, {
    -		.compatible = "lg,lp097qx1-spa1",
    -		.data = &lg_lp097qx1_spa1,
    -	}, {
    -		.compatible = "lg,lp120up1",
    -		.data = &lg_lp120up1,
    -	}, {
    -		.compatible = "lg,lp129qe",
    -		.data = &lg_lp129qe,
    +		.compatible = "lincolntech,lcd185-101ct",
    +		.data = &lincolntech_lcd185_101ct,
    +	}, {
    +		.compatible = "logicpd,type28",
    +		.data = &logicpd_type_28,
    +	}, {
    +		.compatible = "logictechno,lt161010-2nhc",
    +		.data = &logictechno_lt161010_2nh,
    +	}, {
    +		.compatible = "logictechno,lt161010-2nhr",
    +		.data = &logictechno_lt161010_2nh,
    +	}, {
    +		.compatible = "logictechno,lt170410-2whc",
    +		.data = &logictechno_lt170410_2whc,
    +	}, {
    +		.compatible = "logictechno,lttd800480070-l2rt",
    +		.data = &logictechno_lttd800480070_l2rt,
    +	}, {
    +		.compatible = "logictechno,lttd800480070-l6wh-rt",
    +		.data = &logictechno_lttd800480070_l6wh_rt,
    +	}, {
    +		.compatible = "microtips,mf-101hiebcaf0",
    +		.data = &microtips_mf_101hiebcaf0,
    +	}, {
    +		.compatible = "microtips,mf-103hieb0ga0",
    +		.data = &microtips_mf_103hieb0ga0,
     	}, {
     		.compatible = "mitsubishi,aa070mc01-ca1",
     		.data = &mitsubishi_aa070mc01,
     	}, {
    +		.compatible = "multi-inno,mi0700s4t-6",
    +		.data = &multi_inno_mi0700s4t_6,
    +	}, {
    +		.compatible = "multi-inno,mi0800ft-9",
    +		.data = &multi_inno_mi0800ft_9,
    +	}, {
    +		.compatible = "multi-inno,mi1010ait-1cp",
    +		.data = &multi_inno_mi1010ait_1cp,
    +	}, {
     		.compatible = "nec,nl12880bc20-05",
     		.data = &nec_nl12880bc20_05,
     	}, {
    @@ -2614,54 +4338,90 @@
     		.compatible = "ontat,yx700wv03",
     		.data = &ontat_yx700wv03,
     	}, {
    +		.compatible = "ortustech,com37h3m05dtc",
    +		.data = &ortustech_com37h3m,
    +	}, {
    +		.compatible = "ortustech,com37h3m99dtc",
    +		.data = &ortustech_com37h3m,
    +	}, {
     		.compatible = "ortustech,com43h4m85ulc",
     		.data = &ortustech_com43h4m85ulc,
     	}, {
     		.compatible = "osddisplays,osd070t1718-19ts",
     		.data = &osddisplays_osd070t1718_19ts,
     	}, {
    +		.compatible = "pda,91-00156-a0",
    +		.data = &pda_91_00156_a0,
    +	}, {
    +		.compatible = "powertip,ph800480t013-idf02",
    +		.data = &powertip_ph800480t013_idf02,
    +	}, {
     		.compatible = "qiaodian,qd43003c0-40",
     		.data = &qd43003c0_40,
     	}, {
    +		.compatible = "qishenglong,gopher2b-lcd",
    +		.data = &qishenglong_gopher2b_lcd,
    +	}, {
    +		.compatible = "raspberrypi,7inch-dsi",
    +		.data = &raspberrypi_7inch,
    +	}, {
     		.compatible = "rocktech,rk070er9427",
     		.data = &rocktech_rk070er9427,
     	}, {
    -		.compatible = "rockteck,rk101ii01d-ct",
    +		.compatible = "rocktech,rk101ii01d-ct",
     		.data = &rocktech_rk101ii01d_ct,
     	}, {
    -		.compatible = "samsung,lsn122dl01-c01",
    -		.data = &samsung_lsn122dl01_c01,
    +		.compatible = "samsung,ltl101al01",
    +		.data = &samsung_ltl101al01,
     	}, {
     		.compatible = "samsung,ltn101nt05",
     		.data = &samsung_ltn101nt05,
     	}, {
    -		.compatible = "samsung,ltn140at29-301",
    -		.data = &samsung_ltn140at29_301,
    +		.compatible = "satoz,sat050at40h12r2",
    +		.data = &satoz_sat050at40h12r2,
     	}, {
     		.compatible = "sharp,lq035q7db03",
     		.data = &sharp_lq035q7db03,
     	}, {
    +		.compatible = "sharp,lq070y3dg3b",
    +		.data = &sharp_lq070y3dg3b,
    +	}, {
     		.compatible = "sharp,lq101k1ly04",
     		.data = &sharp_lq101k1ly04,
     	}, {
    -		.compatible = "sharp,lq123p1jx31",
    -		.data = &sharp_lq123p1jx31,
    -	}, {
    -		.compatible = "sharp,lq150x1lg11",
    -		.data = &sharp_lq150x1lg11,
    +		.compatible = "sharp,ls020b1dd01d",
    +		.data = &sharp_ls020b1dd01d,
     	}, {
     		.compatible = "shelly,sca07010-bfn-lnn",
     		.data = &shelly_sca07010_bfn_lnn,
     	}, {
    -		.compatible = "starry,kr122ea0sra",
    -		.data = &starry_kr122ea0sra,
    +		.compatible = "starry,kr070pe2t",
    +		.data = &starry_kr070pe2t,
    +	}, {
    +		.compatible = "startek,kd070wvfpa",
    +		.data = &startek_kd070wvfpa,
    +	}, {
    +		.compatible = "team-source-display,tst043015cmhx",
    +		.data = &tsd_tst043015cmhx,
    +	}, {
    +		.compatible = "tfc,s9700rtwv43tr-01b",
    +		.data = &tfc_s9700rtwv43tr_01b,
     	}, {
     		.compatible = "tianma,tm070jdhg30",
     		.data = &tianma_tm070jdhg30,
     	}, {
    +		.compatible = "tianma,tm070jvhg33",
    +		.data = &tianma_tm070jvhg33,
    +	}, {
     		.compatible = "tianma,tm070rvhg71",
     		.data = &tianma_tm070rvhg71,
     	}, {
    +		.compatible = "ti,nspire-cx-lcd-panel",
    +		.data = &ti_nspire_cx_lcd_panel,
    +	}, {
    +		.compatible = "ti,nspire-classic-lcd-panel",
    +		.data = &ti_nspire_classic_lcd_panel,
    +	}, {
     		.compatible = "toshiba,lt089ac29000",
     		.data = &toshiba_lt089ac29000,
     	}, {
    @@ -2689,8 +4449,21 @@
     		.compatible = "urt,umsh-8596md-20t",
     		.data = &urt_umsh_8596md_parallel,
     	}, {
    +		.compatible = "vivax,tpc9150-panel",
    +		.data = &vivax_tpc9150_panel,
    +	}, {
    +		.compatible = "vxt,vl050-8048nt-c01",
    +		.data = &vl050_8048nt_c01,
    +	}, {
     		.compatible = "winstar,wf35ltiacd",
     		.data = &winstar_wf35ltiacd,
    +	}, {
    +		.compatible = "yes-optoelectronics,ytc700tlag-05-201c",
    +		.data = &yes_optoelectronics_ytc700tlag_05_201c,
    +	}, {
    +		/* Must be the last entry */
    +		.compatible = "panel-dpi",
    +		.data = &panel_dpi,
     	}, {
     		/* sentinel */
     	}
    @@ -2710,7 +4483,9 @@
     
     static int panel_simple_platform_remove(struct platform_device *pdev)
     {
    -	return panel_simple_remove(&pdev->dev);
    +	panel_simple_remove(&pdev->dev);
    +
    +	return 0;
     }
     
     static void panel_simple_platform_shutdown(struct platform_device *pdev)
    @@ -2718,10 +4493,17 @@
     	panel_simple_shutdown(&pdev->dev);
     }
     
    +static const struct dev_pm_ops panel_simple_pm_ops = {
    +	SET_RUNTIME_PM_OPS(panel_simple_suspend, panel_simple_resume, NULL)
    +	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
    +				pm_runtime_force_resume)
    +};
    +
     static struct platform_driver panel_simple_platform_driver = {
     	.driver = {
     		.name = "panel-simple",
     		.of_match_table = platform_of_match,
    +		.pm = &panel_simple_pm_ops,
     	},
     	.probe = panel_simple_platform_probe,
     	.remove = panel_simple_platform_remove,
    @@ -2746,7 +4528,6 @@
     	.vsync_start = 1920 + 9,
     	.vsync_end = 1920 + 9 + 2,
     	.vtotal = 1920 + 9 + 2 + 8,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc_dsi auo_b080uan01 = {
    @@ -2758,6 +4539,7 @@
     			.width = 108,
     			.height = 272,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
     	.format = MIPI_DSI_FMT_RGB888,
    @@ -2774,7 +4556,6 @@
     	.vsync_start = 1920 + 21,
     	.vsync_end = 1920 + 21 + 3,
     	.vtotal = 1920 + 21 + 3 + 18,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
     };
     
    @@ -2786,6 +4567,7 @@
     			.width = 107,
     			.height = 172,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO |
     		 MIPI_DSI_MODE_VIDEO_BURST |
    @@ -2804,7 +4586,6 @@
     	.vsync_start = 1280 + 28,
     	.vsync_end = 1280 + 28 + 1,
     	.vtotal = 1280 + 28 + 1 + 14,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc_dsi lg_ld070wx3_sl01 = {
    @@ -2816,6 +4597,7 @@
     			.width = 94,
     			.height = 151,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
     	.format = MIPI_DSI_FMT_RGB888,
    @@ -2832,7 +4614,6 @@
     	.vsync_start = 1280 + 8,
     	.vsync_end = 1280 + 8 + 4,
     	.vtotal = 1280 + 8 + 4 + 12,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc_dsi lg_lh500wx1_sd03 = {
    @@ -2844,6 +4625,7 @@
     			.width = 62,
     			.height = 110,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO,
     	.format = MIPI_DSI_FMT_RGB888,
    @@ -2860,7 +4642,6 @@
     	.vsync_start = 1200 + 17,
     	.vsync_end = 1200 + 17 + 2,
     	.vtotal = 1200 + 17 + 2 + 16,
    -	.vrefresh = 60,
     };
     
     static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
    @@ -2872,9 +4653,38 @@
     			.width = 217,
     			.height = 136,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
     		 MIPI_DSI_CLOCK_NON_CONTINUOUS,
    +	.format = MIPI_DSI_FMT_RGB888,
    +	.lanes = 4,
    +};
    +
    +static const struct drm_display_mode lg_acx467akm_7_mode = {
    +	.clock = 150000,
    +	.hdisplay = 1080,
    +	.hsync_start = 1080 + 2,
    +	.hsync_end = 1080 + 2 + 2,
    +	.htotal = 1080 + 2 + 2 + 2,
    +	.vdisplay = 1920,
    +	.vsync_start = 1920 + 2,
    +	.vsync_end = 1920 + 2 + 2,
    +	.vtotal = 1920 + 2 + 2 + 2,
    +};
    +
    +static const struct panel_desc_dsi lg_acx467akm_7 = {
    +	.desc = {
    +		.modes = &lg_acx467akm_7_mode,
    +		.num_modes = 1,
    +		.bpc = 8,
    +		.size = {
    +			.width = 62,
    +			.height = 110,
    +		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
    +	},
    +	.flags = 0,
     	.format = MIPI_DSI_FMT_RGB888,
     	.lanes = 4,
     };
    @@ -2889,7 +4699,6 @@
     	.vsync_start = 1200 + 16,
     	.vsync_end = 1200 + 16 + 2,
     	.vtotal = 1200 + 16 + 2 + 16,
    -	.vrefresh = 60,
     	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
     };
     
    @@ -2902,10 +4711,11 @@
     			.width = 217,
     			.height = 136,
     		},
    +		.connector_type = DRM_MODE_CONNECTOR_DSI,
     	},
     	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
     		 MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
    -		 MIPI_DSI_MODE_EOT_PACKET,
    +		 MIPI_DSI_MODE_NO_EOT_PACKET,
     	.format = MIPI_DSI_FMT_RGB888,
     	.lanes = 4,
     };
    @@ -2927,7 +4737,10 @@
     		.compatible = "panasonic,vvx10f004b00",
     		.data = &panasonic_vvx10f004b00
     	}, {
    -		.compatible = "osd,osd101t2045-53ts",
    +		.compatible = "lg,acx467akm-7",
    +		.data = &lg_acx467akm_7
    +	}, {
    +		.compatible = "osddisplays,osd101t2045-53ts",
     		.data = &osd101t2045_53ts
     	}, {
     		/* sentinel */
    @@ -2957,7 +4770,7 @@
     
     	err = mipi_dsi_attach(dsi);
     	if (err) {
    -		struct panel_simple *panel = dev_get_drvdata(&dsi->dev);
    +		struct panel_simple *panel = mipi_dsi_get_drvdata(dsi);
     
     		drm_panel_remove(&panel->base);
     	}
    @@ -2965,7 +4778,7 @@
     	return err;
     }
     
    -static int panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
    +static void panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
     {
     	int err;
     
    @@ -2973,7 +4786,7 @@
     	if (err < 0)
     		dev_err(&dsi->dev, "failed to detach from DSI host: %d\n", err);
     
    -	return panel_simple_remove(&dsi->dev);
    +	panel_simple_remove(&dsi->dev);
     }
     
     static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
    @@ -2985,6 +4798,7 @@
     	.driver = {
     		.name = "panel-simple-dsi",
     		.of_match_table = dsi_of_match,
    +		.pm = &panel_simple_pm_ops,
     	},
     	.probe = panel_simple_dsi_probe,
     	.remove = panel_simple_dsi_remove,
    @@ -3002,10 +4816,15 @@
     	if (IS_ENABLED(CONFIG_DRM_MIPI_DSI)) {
     		err = mipi_dsi_driver_register(&panel_simple_dsi_driver);
     		if (err < 0)
    -			return err;
    +			goto err_did_platform_register;
     	}
     
     	return 0;
    +
    +err_did_platform_register:
    +	platform_driver_unregister(&panel_simple_platform_driver);
    +
    +	return err;
     }
     module_init(panel_simple_init);
     
    

    Here is the output to the default SDK for 9.03:

    root@am57xx-evm:~# dmesg | grep drm
    [    6.027648] systemd[1]: Starting Load Kernel Module drm...
    [    9.615234] [drm] Initialized pvr 1.17.4948957 20110701 for 56000000.gpu on minor 0
    [    9.639068] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops [omapdrm])
    [    9.674499] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops [omapdrm])
    [    9.882232] [drm] Enabling DMM ywrap scrolling
    [   10.000518] omapdrm omapdrm.0: [drm] fb0: omapdrmdrmfb frame buffer device
    [   10.059417] WARNING: CPU: 1 PID: 136 at drivers/gpu/drm/drm_bridge.c:1416 drm_bridge_hpd_enable+00
    [   10.073547] Modules linked in: snd_soc_simple_card snd_soc_simple_card_utils omapdrm(+) pvrsrvkm()
    [   10.174316]  warn_slowpath_fmt from drm_bridge_hpd_enable+0x7c/0x80
    [   10.180664]  drm_bridge_hpd_enable from pdev_probe+0x5e8/0x788 [omapdrm]
    [   10.187530]  pdev_probe [omapdrm] from platform_probe+0x5c/0xbc
    [   10.241302]  __platform_register_drivers from omap_drm_init+0x3c/0x50 [omapdrm]
    [   10.248809]  omap_drm_init [omapdrm] from do_one_initcall+0x48/0x254
    [   10.690673] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 1
    root@am57xx-evm:~# 
    root@am57xx-evm:~# 
    root@am57xx-evm:~# modetest
    trying to open device 'i915'...failed
    trying to open device 'amdgpu'...failed
    trying to open device 'radeon'...failed
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed
    trying to open device 'omapdrm'...done
    Encoders:
    id      crtc    type    possible crtcs  possible clones
    62      65      TMDS    0x00000001      0x00000001
    63      0       TMDS    0x00000002      0x00000002
    
    Connectors:
    id      encoder status          name            size (mm)       modes   encoders
    64      62      connected       DPI-1           152x91          1       62
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 800x480 59.52 800 1010 1040 1056 480 502 515 525 33000 flags: nhsync, nvsync; type: preferred, r
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    66      0       disconnected    HDMI-A-1        0x0             0       63
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    
    CRTCs:
    id      fb      pos     size
    65      69      (0,0)   (800x480)
      #0 800x480 59.52 800 1010 1040 1056 480 502 515 525 33000 flags: nhsync, nvsync; type: preferred, r
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    67      0       (0,0)   (0x0)
      #0  nan 0 0 0 0 0 0 0 0 0 flags: ; type: 
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    
    Planes:
    id      crtc    fb      CRTC x,y        x,y     gamma size      possible crtcs
    32      65      69      0,0             0,0     0               0x00000003
      formats: RX12 AR12 RG16 XR24 RG24 AR24 RA24 RX24 AR15 XR12 RA12 XR15
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000c00000018000000
                            01000000480000005258313241523132
                            52473136585232345247323441523234
                            52413234525832344152313558523132
                            5241313258523135ff0f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RX12:  LINEAR
                             AR12:  LINEAR
                             RG16:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             AR24:  LINEAR
                             RA24:  LINEAR
                             RX24:  LINEAR
                             AR15:  LINEAR
                             XR12:  LINEAR
                             RA12:  LINEAR
                             XR15:  LINEAR
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            35 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            36 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            37 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
    38      0       0       0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            41 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            42 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            43 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            44 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            45 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    46      0       0       0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            48 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 2
            49 zpos:
                    flags: range
                    values: 0 3
                    value: 2
            50 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            51 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            52 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            53 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    54      0       0       0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            56 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 refl0
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 3
            57 zpos:
                    flags: range
                    values: 0 3
                    value: 3
            58 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            59 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            60 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            61 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    
    Frame buffers:
    id      size    pitch
    
    

    We need to understand what changes you made that are breaking the driver.

    -Josue

  • Hi ,

    We haven't changed anything in the drm_drv.c file.

    Since we were trying to port the SDK 9.03 for our custom board based on am5728 SOC, we have done certain changes in .config, .dts (mainly in arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi)files along with changes in panel-simple.c to support / port our LCD.

    Additionally, we deleted some of the dts / dtsi files which are not related to am5728 SOC.

    So here is the list of files currently present:-

    /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/boot/dts# ls -lart
    total 1144
    -rw-r--r-- 1 root root 1286 Dec 4 2024 ov10635.dtso
    -rw-r--r-- 1 root root 52629 Dec 4 2024 dra7xx-clocks.dtsi
    -rw-r--r-- 1 root root 771 Dec 4 2024 dra7-mmc-iodelay.dtsi
    -rw-r--r-- 1 root root 139957 Dec 4 2024 dra7-l4.dtsi
    -rw-r--r-- 1 root root 557 Dec 4 2024 dra7-iva-thermal.dtsi
    -rw-r--r-- 1 root root 697 Dec 4 2024 dra7-ipu-dsp-common.dtsi
    -rw-r--r-- 1 root root 1301 Dec 4 2024 dra7-ipu-common-early-boot.dtsi
    -rw-r--r-- 1 root root 14261 Dec 4 2024 dra7-evm.dts
    -rw-r--r-- 1 root root 5083 Dec 4 2024 dra7-evm-common.dtsi
    -rw-r--r-- 1 root root 36631 Dec 4 2024 dra7.dtsi
    -rw-r--r-- 1 root root 572 Dec 4 2024 dra7-dspeve-thermal.dtsi
    -rw-r--r-- 1 root root 15164 Dec 4 2024 dra76x-mmc-iodelay.dtsi
    -rw-r--r-- 1 root root 3568 Dec 4 2024 dra76x.dtsi
    -rw-r--r-- 1 root root 12118 Dec 4 2024 dra76-evm.dts
    -rw-r--r-- 1 root root 633 Dec 4 2024 dra74x-p.dtsi
    -rw-r--r-- 1 root root 35597 Dec 4 2024 dra74x-mmc-iodelay.dtsi
    -rw-r--r-- 1 root root 8073 Dec 4 2024 dra74x.dtsi
    -rw-r--r-- 1 root root 337 Dec 4 2024 dra74-ipu-dsp-common.dtsi
    -rw-r--r-- 1 root root 19209 Dec 4 2024 dra72x-mmc-iodelay.dtsi
    -rw-r--r-- 1 root root 2165 Dec 4 2024 dra72x.dtsi
    -rw-r--r-- 1 root root 3240 Dec 4 2024 dra72-evm-tps65917.dtsi
    -rw-r--r-- 1 root root 3511 Dec 4 2024 dra72-evm-revc.dts
    -rw-r--r-- 1 root root 2572 Dec 4 2024 dra72-evm.dts
    -rw-r--r-- 1 root root 13100 Dec 4 2024 dra72-evm-common.dtsi
    -rw-r--r-- 1 root root 345 Dec 4 2024 dra71x.dtsi
    -rw-r--r-- 1 root root 7221 Dec 4 2024 dra71-evm.dts
    -rw-r--r-- 1 root root 3278 Dec 4 2024 dra62x-j5eco-evm.dts
    -rw-r--r-- 1 root root 294 Dec 4 2024 dra62x.dtsi
    -rw-r--r-- 1 root root 920 Dec 4 2024 dra62x-clocks.dtsi
    -rw-r--r-- 1 root root 4016 Dec 4 2024 axp81x.dtsi
    -rw-r--r-- 1 root root 2148 Dec 4 2024 axp809.dtsi
    -rw-r--r-- 1 root root 4207 Dec 4 2024 axp22x.dtsi
    -rw-r--r-- 1 root root 2391 Dec 4 2024 axp223.dtsi
    -rw-r--r-- 1 root root 3439 Dec 4 2024 axp209.dtsi
    -rw-r--r-- 1 root root 2097 Dec 4 2024 axp152.dtsi
    -rw-r--r-- 1 root root 4932 Dec 4 2024 axm55xx.dtsi
    -rw-r--r-- 1 root root 3947 Dec 4 2024 axm5516-cpus.dtsi
    -rw-r--r-- 1 root root 590 Dec 4 2024 axm5516-amarillo.dts
    -rw-r--r-- 1 root root 11552 Dec 4 2024 artpec6.dtsi
    -rw-r--r-- 1 root root 873 Dec 4 2024 artpec6-devboard.dts
    -rw-r--r-- 1 root root 444 Dec 4 2024 armv7-m.dtsi
    -rw-r--r-- 1 root root 2372 Dec 4 2024 am57xx-evm.dtso
    -rw-r--r-- 1 root root 745 Dec 4 2024 am57xx-beagle-x15-revc.dts
    -rw-r--r-- 1 root root 1067 Dec 4 2024 am57xx-beagle-x15.dts
    -rw-r--r-- 1 root root 6753 Dec 4 2024 am57-pruss.dtsi
    -rw-r--r-- 1 root root 442 Dec 4 2024 am5728.dtsi
    -rw-r--r-- 1 root root 2118 Dec 4 2024 aks-cdu.dts
    -rw-r--r-- 1 root root 395 Jun 23 17:26 am57xx-commercial-grade.dtsi
    -rw-r--r-- 1 root root 185 Jun 23 23:04 Makefile
    -rw-r--r-- 1 root root 15635 Jun 23 23:51 am57xx-beagle-x15-common.dtsi
    -rw-r--r-- 1 root root 1000 Jun 26 14:58 omap4-cpu-thermal.dtsi
    -rw-r--r-- 1 root root 615 Jun 26 15:00 omap5-gpu-thermal.dtsi
    -rw-r--r-- 1 root root 620 Jun 26 15:01 omap5-core-thermal.dtsi
    -rw-r--r-- 1 root root 218154 Jun 26 15:03 am57xx-beagle-x15.dtb
    -rw-r--r-- 1 root root 2134 Jun 26 15:03 .am57xx-beagle-x15.dtb.cmd
    -rw-r--r-- 1 root root 218048 Jun 26 15:03 am57xx-beagle-x15-revc.dtb
    -rw-r--r-- 1 root root 2214 Jun 26 15:03 .am57xx-beagle-x15-revc.dtb.cmd
    -rw-r--r-- 1 root root 3496 Jun 26 15:03 am57xx-evm.dtbo
    -rw-r--r-- 1 root root 1114 Jun 26 15:03 .am57xx-evm.dtbo.cmd
    drwxr-xr-x 5 root root 4096 Jun 26 16:06 ..
    drwxr-xr-x 2 root root 131072 Jun 30 09:40 .




    Also modified the contents of /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel- 6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/boot/dts/Makefile as below:-


    am57xx-evm-dtbs := am57xx-beagle-x15.dtb am57xx-evm.dtbo
    am57xx-evm-reva3-dtbs := am57xx-beagle-x15-revc.dtb am57xx-evm.dtbo
    dtb-$(CONFIG_SOC_DRA7XX) += \
    am57xx-beagle-x15-revc.dtb \


    Please see the following:-


    diff .config arch/arm/configs/multi_v7_defconfig

    1,43c1
    < #
    < # Automatically generated file; DO NOT EDIT.
    < # Linux/arm 6.1.119 Kernel Configuration
    < #
    < CONFIG_CC_VERSION_TEXT="arm-oe-linux-gnueabi-gcc (GCC) 11.5.0"
    < CONFIG_CC_IS_GCC=y
    < CONFIG_GCC_VERSION=110500
    < CONFIG_CLANG_VERSION=0
    < CONFIG_AS_IS_GNU=y
    < CONFIG_AS_VERSION=20244508
    < CONFIG_LD_IS_BFD=y
    < CONFIG_LD_VERSION=20244508
    < CONFIG_LLD_VERSION=0
    < CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
    < CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
    < CONFIG_CC_HAS_ASM_INLINE=y
    < CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
    < CONFIG_PAHOLE_VERSION=0
    < CONFIG_IRQ_WORK=y
    < CONFIG_BUILDTIME_TABLE_SORT=y
    < CONFIG_THREAD_INFO_IN_TASK=y
    < 
    < #
    < # General setup
    < #
    < CONFIG_INIT_ENV_ARG_LIMIT=32
    < # CONFIG_COMPILE_TEST is not set
    < # CONFIG_WERROR is not set
    < CONFIG_LOCALVERSION=""
    < CONFIG_LOCALVERSION_AUTO=y
    < CONFIG_BUILD_SALT=""
    < CONFIG_HAVE_KERNEL_GZIP=y
    < CONFIG_HAVE_KERNEL_LZMA=y
    < CONFIG_HAVE_KERNEL_XZ=y
    < CONFIG_HAVE_KERNEL_LZO=y
    < CONFIG_HAVE_KERNEL_LZ4=y
    < CONFIG_KERNEL_GZIP=y
    < # CONFIG_KERNEL_LZMA is not set
    < # CONFIG_KERNEL_XZ is not set
    < # CONFIG_KERNEL_LZO is not set
    < # CONFIG_KERNEL_LZ4 is not set
    < CONFIG_DEFAULT_INIT=""
    < CONFIG_DEFAULT_HOSTNAME="(none)"
    ---
    > CONFIG_XFRM_USER=m
    45d2
    < CONFIG_SYSVIPC_SYSCTL=y
    47,87d3
    < CONFIG_POSIX_MQUEUE_SYSCTL=y
    < # CONFIG_WATCH_QUEUE is not set
    < CONFIG_CROSS_MEMORY_ATTACH=y
    < # CONFIG_USELIB is not set
    < # CONFIG_AUDIT is not set
    < CONFIG_HAVE_ARCH_AUDITSYSCALL=y
    < 
    < #
    < # IRQ subsystem
    < #
    < CONFIG_GENERIC_IRQ_PROBE=y
    < CONFIG_GENERIC_IRQ_SHOW=y
    < CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
    < CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
    < CONFIG_GENERIC_IRQ_MIGRATION=y
    < CONFIG_HARDIRQS_SW_RESEND=y
    < CONFIG_GENERIC_IRQ_CHIP=y
    < CONFIG_IRQ_DOMAIN=y
    < CONFIG_IRQ_DOMAIN_HIERARCHY=y
    < CONFIG_GENERIC_IRQ_IPI=y
    < CONFIG_GENERIC_MSI_IRQ=y
    < CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
    < CONFIG_IRQ_FORCED_THREADING=y
    < CONFIG_SPARSE_IRQ=y
    < # CONFIG_GENERIC_IRQ_DEBUGFS is not set
    < # end of IRQ subsystem
    < 
    < CONFIG_GENERIC_IRQ_MULTI_HANDLER=y
    < CONFIG_GENERIC_TIME_VSYSCALL=y
    < CONFIG_GENERIC_CLOCKEVENTS=y
    < CONFIG_ARCH_HAS_TICK_BROADCAST=y
    < CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
    < CONFIG_CONTEXT_TRACKING=y
    < CONFIG_CONTEXT_TRACKING_IDLE=y
    < 
    < #
    < # Timers subsystem
    < #
    < CONFIG_TICK_ONESHOT=y
    < CONFIG_NO_HZ_COMMON=y
    < # CONFIG_HZ_PERIODIC is not set
    89,90d4
    < # CONFIG_NO_HZ_FULL is not set
    < # CONFIG_NO_HZ is not set
    92,106d5
    < # end of Timers subsystem
    < 
    < CONFIG_BPF=y
    < CONFIG_HAVE_EBPF_JIT=y
    < 
    < #
    < # BPF subsystem
    < #
    < # CONFIG_BPF_SYSCALL is not set
    < # CONFIG_BPF_JIT is not set
    < # end of BPF subsystem
    < 
    < CONFIG_PREEMPT_BUILD=y
    < # CONFIG_PREEMPT_NONE is not set
    < # CONFIG_PREEMPT_VOLUNTARY is not set
    108,157d6
    < CONFIG_PREEMPT_COUNT=y
    < CONFIG_PREEMPTION=y
    < 
    < #
    < # CPU/Task time and stats accounting
    < #
    < CONFIG_TICK_CPU_ACCOUNTING=y
    < # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
    < # CONFIG_IRQ_TIME_ACCOUNTING is not set
    < CONFIG_SCHED_THERMAL_PRESSURE=y
    < CONFIG_BSD_PROCESS_ACCT=y
    < # CONFIG_BSD_PROCESS_ACCT_V3 is not set
    < # CONFIG_TASKSTATS is not set
    < # CONFIG_PSI is not set
    < # end of CPU/Task time and stats accounting
    < 
    < CONFIG_CPU_ISOLATION=y
    < 
    < #
    < # RCU Subsystem
    < #
    < CONFIG_TREE_RCU=y
    < CONFIG_PREEMPT_RCU=y
    < # CONFIG_RCU_EXPERT is not set
    < CONFIG_SRCU=y
    < CONFIG_TREE_SRCU=y
    < CONFIG_TASKS_RCU_GENERIC=y
    < CONFIG_TASKS_RCU=y
    < CONFIG_RCU_STALL_COMMON=y
    < CONFIG_RCU_NEED_SEGCBLIST=y
    < # end of RCU Subsystem
    < 
    < CONFIG_IKCONFIG=y
    < CONFIG_IKCONFIG_PROC=y
    < # CONFIG_IKHEADERS is not set
    < CONFIG_LOG_BUF_SHIFT=17
    < CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
    < CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
    < # CONFIG_PRINTK_INDEX is not set
    < CONFIG_GENERIC_SCHED_CLOCK=y
    < 
    < #
    < # Scheduler features
    < #
    < # CONFIG_UCLAMP_TASK is not set
    < # end of Scheduler features
    < 
    < CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5"
    < CONFIG_GCC10_NO_ARRAY_BOUNDS=y
    < CONFIG_CC_NO_ARRAY_BOUNDS=y
    159,171d7
    < # CONFIG_CGROUP_FAVOR_DYNMODS is not set
    < # CONFIG_MEMCG is not set
    < # CONFIG_BLK_CGROUP is not set
    < # CONFIG_CGROUP_SCHED is not set
    < # CONFIG_CGROUP_PIDS is not set
    < # CONFIG_CGROUP_RDMA is not set
    < # CONFIG_CGROUP_FREEZER is not set
    < # CONFIG_CPUSETS is not set
    < # CONFIG_CGROUP_DEVICE is not set
    < # CONFIG_CGROUP_CPUACCT is not set
    < # CONFIG_CGROUP_PERF is not set
    < # CONFIG_CGROUP_MISC is not set
    < # CONFIG_CGROUP_DEBUG is not set
    173,174d8
    < CONFIG_UTS_NS=y
    < CONFIG_IPC_NS=y
    176,181c10
    < CONFIG_PID_NS=y
    < CONFIG_NET_NS=y
    < # CONFIG_CHECKPOINT_RESTORE is not set
    < # CONFIG_SCHED_AUTOGROUP is not set
    < # CONFIG_SYSFS_DEPRECATED is not set
    < # CONFIG_RELAY is not set
    ---
    > CONFIG_BSD_PROCESS_ACCT=y
    183,226d11
    < CONFIG_INITRAMFS_SOURCE=""
    < CONFIG_RD_GZIP=y
    < CONFIG_RD_BZIP2=y
    < CONFIG_RD_LZMA=y
    < CONFIG_RD_XZ=y
    < CONFIG_RD_LZO=y
    < CONFIG_RD_LZ4=y
    < CONFIG_RD_ZSTD=y
    < # CONFIG_BOOT_CONFIG is not set
    < CONFIG_INITRAMFS_PRESERVE_MTIME=y
    < CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
    < # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
    < CONFIG_LD_ORPHAN_WARN=y
    < CONFIG_SYSCTL=y
    < CONFIG_HAVE_UID16=y
    < CONFIG_EXPERT=y
    < CONFIG_UID16=y
    < CONFIG_MULTIUSER=y
    < # CONFIG_SGETMASK_SYSCALL is not set
    < CONFIG_SYSFS_SYSCALL=y
    < CONFIG_FHANDLE=y
    < CONFIG_POSIX_TIMERS=y
    < CONFIG_PRINTK=y
    < CONFIG_BUG=y
    < CONFIG_ELF_CORE=y
    < CONFIG_BASE_FULL=y
    < CONFIG_FUTEX=y
    < CONFIG_FUTEX_PI=y
    < CONFIG_EPOLL=y
    < CONFIG_SIGNALFD=y
    < CONFIG_TIMERFD=y
    < CONFIG_EVENTFD=y
    < CONFIG_SHMEM=y
    < CONFIG_AIO=y
    < CONFIG_IO_URING=y
    < CONFIG_ADVISE_SYSCALLS=y
    < CONFIG_MEMBARRIER=y
    < CONFIG_KALLSYMS=y
    < # CONFIG_KALLSYMS_ALL is not set
    < CONFIG_KALLSYMS_BASE_RELATIVE=y
    < CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
    < CONFIG_KCMP=y
    < CONFIG_RSEQ=y
    < # CONFIG_DEBUG_RSEQ is not set
    228,234d12
    < CONFIG_HAVE_PERF_EVENTS=y
    < CONFIG_PERF_USE_VMALLOC=y
    < # CONFIG_PC104 is not set
    < 
    < #
    < # Kernel Performance Events And Counters
    < #
    236,295c14,71
    < # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
    < # end of Kernel Performance Events And Counters
    < 
    < CONFIG_SYSTEM_DATA_VERIFICATION=y
    < # CONFIG_PROFILING is not set
    < CONFIG_TRACEPOINTS=y
    < # end of General setup
    < 
    < CONFIG_ARM=y
    < CONFIG_ARM_HAS_GROUP_RELOCS=y
    < CONFIG_SYS_SUPPORTS_APM_EMULATION=y
    < CONFIG_HAVE_PROC_CPU=y
    < CONFIG_STACKTRACE_SUPPORT=y
    < CONFIG_LOCKDEP_SUPPORT=y
    < CONFIG_ARCH_HAS_BANDGAP=y
    < CONFIG_FIX_EARLYCON_MEM=y
    < CONFIG_GENERIC_HWEIGHT=y
    < CONFIG_GENERIC_CALIBRATE_DELAY=y
    < CONFIG_ARCH_SUPPORTS_UPROBES=y
    < CONFIG_ARM_PATCH_PHYS_VIRT=y
    < CONFIG_GENERIC_BUG=y
    < CONFIG_PGTABLE_LEVELS=3
    < 
    < #
    < # System Type
    < #
    < CONFIG_MMU=y
    < CONFIG_ARCH_MMAP_RND_BITS_MIN=8
    < CONFIG_ARCH_MMAP_RND_BITS_MAX=16
    < CONFIG_ARCH_MULTIPLATFORM=y
    < 
    < #
    < # Platform selection
    < #
    < 
    < #
    < # CPU Core family selection
    < #
    < # CONFIG_ARCH_MULTI_V6 is not set
    < CONFIG_ARCH_MULTI_V7=y
    < CONFIG_ARCH_MULTI_V6_V7=y
    < # end of Platform selection
    < 
    < # CONFIG_ARCH_VIRT is not set
    < # CONFIG_ARCH_AIROHA is not set
    < # CONFIG_ARCH_ACTIONS is not set
    < # CONFIG_ARCH_ALPINE is not set
    < # CONFIG_ARCH_ARTPEC is not set
    < # CONFIG_ARCH_ASPEED is not set
    < # CONFIG_ARCH_AT91 is not set
    < # CONFIG_ARCH_AXXIA is not set
    < # CONFIG_ARCH_BCM is not set
    < # CONFIG_ARCH_BERLIN is not set
    < # CONFIG_ARCH_DIGICOLOR is not set
    < # CONFIG_ARCH_DOVE is not set
    < # CONFIG_ARCH_EXYNOS is not set
    < # CONFIG_ARCH_HIGHBANK is not set
    < # CONFIG_ARCH_HISI is not set
    < # CONFIG_ARCH_HPE is not set
    < # CONFIG_ARCH_MXC is not set
    ---
    > CONFIG_IKCONFIG=y
    > CONFIG_IKCONFIG_PROC=y
    > CONFIG_ARCH_VIRT=y
    > CONFIG_ARCH_AIROHA=y
    > CONFIG_ARCH_ACTIONS=y
    > CONFIG_ARCH_ALPINE=y
    > CONFIG_ARCH_ARTPEC=y
    > CONFIG_MACH_ARTPEC6=y
    > CONFIG_ARCH_ASPEED=y
    > CONFIG_MACH_ASPEED_G6=y
    > CONFIG_ARCH_AT91=y
    > CONFIG_SOC_SAMA5D2=y
    > CONFIG_SOC_SAMA5D3=y
    > CONFIG_SOC_SAMA5D4=y
    > CONFIG_SOC_SAMA7G5=y
    > CONFIG_SOC_LAN966=y
    > CONFIG_ARCH_BCM=y
    > CONFIG_ARCH_BCM_CYGNUS=y
    > CONFIG_ARCH_BCM_HR2=y
    > CONFIG_ARCH_BCM_NSP=y
    > CONFIG_ARCH_BCM_5301X=y
    > CONFIG_ARCH_BCM_281XX=y
    > CONFIG_ARCH_BCM_21664=y
    > CONFIG_ARCH_BCM_23550=y
    > CONFIG_ARCH_BCM2835=y
    > CONFIG_ARCH_BCM_53573=y
    > CONFIG_ARCH_BRCMSTB=y
    > CONFIG_ARCH_BCMBCA=y
    > CONFIG_ARCH_BCMBCA_CORTEXA7=y
    > CONFIG_ARCH_BCMBCA_CORTEXA9=y
    > CONFIG_ARCH_BCMBCA_BRAHMAB15=y
    > CONFIG_ARCH_BERLIN=y
    > CONFIG_MACH_BERLIN_BG2=y
    > CONFIG_MACH_BERLIN_BG2CD=y
    > CONFIG_MACH_BERLIN_BG2Q=y
    > CONFIG_ARCH_DIGICOLOR=y
    > CONFIG_ARCH_EXYNOS=y
    > CONFIG_ARCH_HIGHBANK=y
    > CONFIG_ARCH_HISI=y
    > CONFIG_ARCH_HI3xxx=y
    > CONFIG_ARCH_HIP01=y
    > CONFIG_ARCH_HIP04=y
    > CONFIG_ARCH_HIX5HD2=y
    > CONFIG_ARCH_HPE=y
    > CONFIG_ARCH_HPE_GXP=y
    > CONFIG_ARCH_MXC=y
    > CONFIG_SOC_IMX50=y
    > CONFIG_SOC_IMX51=y
    > CONFIG_SOC_IMX53=y
    > CONFIG_SOC_IMX6Q=y
    > CONFIG_SOC_IMX6SL=y
    > CONFIG_SOC_IMX6SLL=y
    > CONFIG_SOC_IMX6SX=y
    > CONFIG_SOC_IMX6UL=y
    > CONFIG_SOC_LS1021A=y
    > CONFIG_SOC_IMX7D=y
    > CONFIG_SOC_IMX7ULP=y
    > CONFIG_SOC_VF610=y
    297,310c73,86
    < # CONFIG_ARCH_MEDIATEK is not set
    < # CONFIG_ARCH_MESON is not set
    < # CONFIG_ARCH_MILBEAUT is not set
    < # CONFIG_ARCH_MMP is not set
    < # CONFIG_ARCH_MSTARV7 is not set
    < # CONFIG_ARCH_MVEBU is not set
    < # CONFIG_ARCH_NPCM is not set
    < CONFIG_ARCH_OMAP=y
    < CONFIG_MACH_OMAP_GENERIC=y
    < 
    < #
    < # TI OMAP/AM/DM/DRA Family
    < #
    < CONFIG_OMAP_HWMOD=y
    ---
    > CONFIG_ARCH_MEDIATEK=y
    > CONFIG_ARCH_MESON=y
    > CONFIG_ARCH_MILBEAUT=y
    > CONFIG_ARCH_MILBEAUT_M10V=y
    > CONFIG_ARCH_MMP=y
    > CONFIG_MACH_MMP2_DT=y
    > CONFIG_MACH_MMP3_DT=y
    > CONFIG_ARCH_MVEBU=y
    > CONFIG_MACH_ARMADA_370=y
    > CONFIG_MACH_ARMADA_375=y
    > CONFIG_MACH_ARMADA_38X=y
    > CONFIG_MACH_ARMADA_39X=y
    > CONFIG_MACH_ARMADA_XP=y
    > CONFIG_MACH_DOVE=y
    317,379c93,115
    < CONFIG_ARCH_OMAP2PLUS=y
    < CONFIG_OMAP_INTERCONNECT_BARRIER=y
    < 
    < #
    < # TI OMAP2/3/4 Specific Features
    < #
    < CONFIG_ARCH_OMAP2PLUS_TYPICAL=y
    < CONFIG_SOC_HAS_OMAP2_SDRC=y
    < CONFIG_SOC_HAS_REALTIME_COUNTER=y
    < # CONFIG_POWER_AVS_OMAP is not set
    < # CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set
    < CONFIG_SOC_OMAP3430=y
    < CONFIG_SOC_TI81XX=y
    < 
    < #
    < # OMAP Legacy Platform Data Board Type
    < #
    < # CONFIG_OMAP3_SDRC_AC_TIMING is not set
    < # end of TI OMAP2/3/4 Specific Features
    < 
    < # CONFIG_OMAP5_ERRATA_801819 is not set
    < # end of TI OMAP/AM/DM/DRA Family
    < 
    < # CONFIG_ARCH_QCOM is not set
    < # CONFIG_ARCH_RDA is not set
    < # CONFIG_ARCH_REALTEK is not set
    < # CONFIG_ARCH_ROCKCHIP is not set
    < # CONFIG_ARCH_S5PV210 is not set
    < # CONFIG_ARCH_RENESAS is not set
    < # CONFIG_ARCH_INTEL_SOCFPGA is not set
    < # CONFIG_PLAT_SPEAR is not set
    < # CONFIG_ARCH_STI is not set
    < # CONFIG_ARCH_STM32 is not set
    < # CONFIG_ARCH_SUNPLUS is not set
    < # CONFIG_ARCH_SUNXI is not set
    < # CONFIG_ARCH_TEGRA is not set
    < # CONFIG_ARCH_UNIPHIER is not set
    < # CONFIG_ARCH_U8500 is not set
    < # CONFIG_ARCH_REALVIEW is not set
    < # CONFIG_ARCH_VEXPRESS is not set
    < # CONFIG_ARCH_WM8850 is not set
    < # CONFIG_ARCH_ZYNQ is not set
    < 
    < #
    < # Processor Type
    < #
    < CONFIG_CPU_V7=y
    < CONFIG_CPU_THUMB_CAPABLE=y
    < CONFIG_CPU_32v6K=y
    < CONFIG_CPU_32v7=y
    < CONFIG_CPU_ABRT_EV7=y
    < CONFIG_CPU_PABRT_V7=y
    < CONFIG_CPU_CACHE_V7=y
    < CONFIG_CPU_CACHE_VIPT=y
    < CONFIG_CPU_COPY_V6=y
    < CONFIG_CPU_TLB_V7=y
    < CONFIG_CPU_HAS_ASID=y
    < CONFIG_CPU_CP15=y
    < CONFIG_CPU_CP15_MMU=y
    < 
    < #
    < # Processor Features
    < #
    ---
    > CONFIG_ARCH_QCOM=y
    > CONFIG_ARCH_MSM8X60=y
    > CONFIG_ARCH_MSM8916=y
    > CONFIG_ARCH_MSM8960=y
    > CONFIG_ARCH_MSM8974=y
    > CONFIG_ARCH_ROCKCHIP=y
    > CONFIG_ARCH_RENESAS=y
    > CONFIG_ARCH_INTEL_SOCFPGA=y
    > CONFIG_PLAT_SPEAR=y
    > CONFIG_ARCH_SPEAR13XX=y
    > CONFIG_MACH_SPEAR1310=y
    > CONFIG_MACH_SPEAR1340=y
    > CONFIG_ARCH_STI=y
    > CONFIG_ARCH_STM32=y
    > CONFIG_ARCH_SUNPLUS=y
    > CONFIG_ARCH_SUNXI=y
    > CONFIG_ARCH_TEGRA=y
    > CONFIG_ARCH_UNIPHIER=y
    > CONFIG_ARCH_U8500=y
    > CONFIG_ARCH_VEXPRESS=y
    > CONFIG_ARCH_VEXPRESS_TC2_PM=y
    > CONFIG_ARCH_WM8850=y
    > CONFIG_ARCH_ZYNQ=y
    381,438d116
    < CONFIG_ARM_PV_FIXUP=y
    < CONFIG_ARM_THUMB=y
    < CONFIG_ARM_THUMBEE=y
    < CONFIG_ARM_VIRT_EXT=y
    < CONFIG_SWP_EMULATE=y
    < CONFIG_CPU_LITTLE_ENDIAN=y
    < # CONFIG_CPU_BIG_ENDIAN is not set
    < # CONFIG_CPU_ICACHE_DISABLE is not set
    < # CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND is not set
    < # CONFIG_CPU_BPREDICT_DISABLE is not set
    < CONFIG_CPU_SPECTRE=y
    < CONFIG_HARDEN_BRANCH_PREDICTOR=y
    < CONFIG_HARDEN_BRANCH_HISTORY=y
    < CONFIG_KUSER_HELPERS=y
    < CONFIG_VDSO=y
    < CONFIG_OUTER_CACHE=y
    < CONFIG_OUTER_CACHE_SYNC=y
    < CONFIG_MIGHT_HAVE_CACHE_L2X0=y
    < CONFIG_CACHE_L2X0=y
    < # CONFIG_CACHE_L2X0_PMU is not set
    < CONFIG_PL310_ERRATA_588369=y
    < CONFIG_PL310_ERRATA_727915=y
    < CONFIG_PL310_ERRATA_753970=y
    < CONFIG_PL310_ERRATA_769419=y
    < CONFIG_ARM_L1_CACHE_SHIFT_6=y
    < CONFIG_ARM_L1_CACHE_SHIFT=6
    < CONFIG_ARM_DMA_MEM_BUFFERABLE=y
    < CONFIG_ARM_HEAVY_MB=y
    < CONFIG_DEBUG_ALIGN_RODATA=y
    < CONFIG_ARM_ERRATA_430973=y
    < CONFIG_ARM_ERRATA_643719=y
    < CONFIG_ARM_ERRATA_720789=y
    < CONFIG_ARM_ERRATA_754322=y
    < CONFIG_ARM_ERRATA_754327=y
    < CONFIG_ARM_ERRATA_764369=y
    < # CONFIG_ARM_ERRATA_764319 is not set
    < CONFIG_ARM_ERRATA_775420=y
    < CONFIG_ARM_ERRATA_798181=y
    < # CONFIG_ARM_ERRATA_773022 is not set
    < # CONFIG_ARM_ERRATA_818325_852422 is not set
    < # CONFIG_ARM_ERRATA_821420 is not set
    < # CONFIG_ARM_ERRATA_825619 is not set
    < # CONFIG_ARM_ERRATA_857271 is not set
    < # CONFIG_ARM_ERRATA_852421 is not set
    < # CONFIG_ARM_ERRATA_852423 is not set
    < # CONFIG_ARM_ERRATA_857272 is not set
    < # end of System Type
    < 
    < #
    < # Bus support
    < #
    < CONFIG_ARM_ERRATA_814220=y
    < # end of Bus support
    < 
    < #
    < # Kernel Features
    < #
    < CONFIG_HAVE_SMP=y
    440,454d117
    < CONFIG_SMP_ON_UP=y
    < CONFIG_CURRENT_POINTER_IN_TPIDRURO=y
    < CONFIG_IRQSTACKS=y
    < CONFIG_ARM_CPU_TOPOLOGY=y
    < # CONFIG_SCHED_MC is not set
    < # CONFIG_SCHED_SMT is not set
    < CONFIG_HAVE_ARM_SCU=y
    < CONFIG_HAVE_ARM_ARCH_TIMER=y
    < CONFIG_HAVE_ARM_TWD=y
    < CONFIG_MCPM=y
    < # CONFIG_BIG_LITTLE is not set
    < CONFIG_VMSPLIT_3G=y
    < # CONFIG_VMSPLIT_2G is not set
    < # CONFIG_VMSPLIT_1G is not set
    < CONFIG_PAGE_OFFSET=0xC0000000
    456,495d118
    < CONFIG_HOTPLUG_CPU=y
    < CONFIG_ARM_PSCI=y
    < CONFIG_ARCH_NR_GPIO=512
    < CONFIG_HZ_FIXED=0
    < CONFIG_HZ_100=y
    < # CONFIG_HZ_200 is not set
    < # CONFIG_HZ_250 is not set
    < # CONFIG_HZ_300 is not set
    < # CONFIG_HZ_500 is not set
    < # CONFIG_HZ_1000 is not set
    < CONFIG_HZ=100
    < CONFIG_SCHED_HRTICK=y
    < # CONFIG_THUMB2_KERNEL is not set
    < CONFIG_ARM_PATCH_IDIV=y
    < CONFIG_AEABI=y
    < # CONFIG_OABI_COMPAT is not set
    < CONFIG_ARCH_SELECT_MEMORY_MODEL=y
    < CONFIG_ARCH_FLATMEM_ENABLE=y
    < CONFIG_ARCH_SPARSEMEM_ENABLE=y
    < CONFIG_HIGHMEM=y
    < CONFIG_HIGHPTE=y
    < CONFIG_HW_PERF_EVENTS=y
    < CONFIG_ARM_MODULE_PLTS=y
    < CONFIG_ARCH_FORCE_MAX_ORDER=12
    < CONFIG_ALIGNMENT_TRAP=y
    < # CONFIG_UACCESS_WITH_MEMCPY is not set
    < # CONFIG_PARAVIRT is not set
    < # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
    < # CONFIG_XEN is not set
    < # end of Kernel Features
    < 
    < #
    < # Boot options
    < #
    < CONFIG_USE_OF=y
    < CONFIG_ATAGS=y
    < # CONFIG_UNUSED_BOARD_FILES is not set
    < # CONFIG_DEPRECATED_PARAM_STRUCT is not set
    < CONFIG_ZBOOT_ROM_TEXT=0x0
    < CONFIG_ZBOOT_ROM_BSS=0x0
    498,500d120
    < CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER=y
    < # CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND is not set
    < CONFIG_CMDLINE=""
    502,505d121
    < CONFIG_ATAGS_PROC=y
    < # CONFIG_CRASH_DUMP is not set
    < CONFIG_AUTO_ZRELADDR=y
    < CONFIG_EFI_STUB=y
    507,516d122
    < CONFIG_DMI=y
    < # end of Boot options
    < 
    < #
    < # CPU Power Management
    < #
    < 
    < #
    < # CPU Frequency scaling
    < #
    518,519d123
    < CONFIG_CPU_FREQ_GOV_ATTR_SET=y
    < CONFIG_CPU_FREQ_GOV_COMMON=y
    521,523d124
    < # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    < # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
    < # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    525,527d125
    < # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    < # CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
    < CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    530d127
    < CONFIG_CPU_FREQ_GOV_ONDEMAND=y
    533,536d129
    < 
    < #
    < # CPU frequency scaling drivers
    < #
    538,539c131,133
    < CONFIG_CPUFREQ_DT_PLATDEV=y
    < CONFIG_ARM_OMAP2PLUS_CPUFREQ=y
    ---
    > CONFIG_ARM_IMX6Q_CPUFREQ=y
    > CONFIG_ARM_QCOM_CPUFREQ_NVMEM=y
    > CONFIG_ARM_RASPBERRYPI_CPUFREQ=y
    541,546c135
    < CONFIG_ARM_TI_CPUFREQ=y
    < # end of CPU Frequency scaling
    < 
    < #
    < # CPU Idle
    < #
    ---
    > CONFIG_QORIQ_CPUFREQ=y
    548,557d136
    < CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
    < # CONFIG_CPU_IDLE_GOV_LADDER is not set
    < CONFIG_CPU_IDLE_GOV_MENU=y
    < # CONFIG_CPU_IDLE_GOV_TEO is not set
    < CONFIG_DT_IDLE_STATES=y
    < CONFIG_DT_IDLE_GENPD=y
    < 
    < #
    < # ARM CPU Idle Drivers
    < #
    560,577c139,142
    < CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y
    < # CONFIG_ARM_HIGHBANK_CPUIDLE is not set
    < # end of ARM CPU Idle Drivers
    < 
    < CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y
    < # end of CPU Idle
    < # end of CPU Power Management
    < 
    < #
    < # Floating point emulation
    < #
    < 
    < #
    < # At least one emulation must be selected
    < #
    < CONFIG_VFP=y
    < CONFIG_VFPv3=y
    < CONFIG_NEON=y
    ---
    > CONFIG_ARM_ZYNQ_CPUIDLE=y
    > CONFIG_ARM_EXYNOS_CPUIDLE=y
    > CONFIG_ARM_TEGRA_CPUIDLE=y
    > CONFIG_ARM_QCOM_SPM_CPUIDLE=y
    579,704c144,154
    < # end of Floating point emulation
    < 
    < #
    < # Power management options
    < #
    < CONFIG_SUSPEND=y
    < CONFIG_SUSPEND_FREEZER=y
    < # CONFIG_SUSPEND_SKIP_SYNC is not set
    < # CONFIG_HIBERNATION is not set
    < CONFIG_PM_SLEEP=y
    < CONFIG_PM_SLEEP_SMP=y
    < # CONFIG_PM_AUTOSLEEP is not set
    < # CONFIG_PM_USERSPACE_AUTOSLEEP is not set
    < # CONFIG_PM_WAKELOCKS is not set
    < CONFIG_PM=y
    < CONFIG_PM_DEBUG=y
    < CONFIG_PM_ADVANCED_DEBUG=y
    < CONFIG_PM_TEST_SUSPEND=y
    < CONFIG_PM_SLEEP_DEBUG=y
    < CONFIG_DPM_WATCHDOG=y
    < CONFIG_DPM_WATCHDOG_TIMEOUT=120
    < # CONFIG_APM_EMULATION is not set
    < CONFIG_PM_CLK=y
    < CONFIG_PM_GENERIC_DOMAINS=y
    < # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
    < CONFIG_PM_GENERIC_DOMAINS_SLEEP=y
    < CONFIG_PM_GENERIC_DOMAINS_OF=y
    < CONFIG_CPU_PM=y
    < # CONFIG_ENERGY_MODEL is not set
    < CONFIG_ARCH_SUSPEND_POSSIBLE=y
    < CONFIG_ARM_CPU_SUSPEND=y
    < CONFIG_ARCH_HIBERNATION_POSSIBLE=y
    < # end of Power management options
    < 
    < CONFIG_AS_VFP_VMRS_FPINST=y
    < CONFIG_CPU_MITIGATIONS=y
    < 
    < #
    < # General architecture-dependent options
    < #
    < CONFIG_CRASH_CORE=y
    < CONFIG_KEXEC_CORE=y
    < # CONFIG_KPROBES is not set
    < # CONFIG_JUMP_LABEL is not set
    < CONFIG_UPROBES=y
    < CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
    < CONFIG_ARCH_USE_BUILTIN_BSWAP=y
    < CONFIG_HAVE_KPROBES=y
    < CONFIG_HAVE_KRETPROBES=y
    < CONFIG_HAVE_OPTPROBES=y
    < CONFIG_HAVE_NMI=y
    < CONFIG_TRACE_IRQFLAGS_SUPPORT=y
    < CONFIG_HAVE_ARCH_TRACEHOOK=y
    < CONFIG_HAVE_DMA_CONTIGUOUS=y
    < CONFIG_GENERIC_SMP_IDLE_THREAD=y
    < CONFIG_GENERIC_IDLE_POLL_SETUP=y
    < CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
    < CONFIG_ARCH_HAS_KEEPINITRD=y
    < CONFIG_ARCH_HAS_SET_MEMORY=y
    < CONFIG_ARCH_HAS_CPU_FINALIZE_INIT=y
    < CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
    < CONFIG_ARCH_32BIT_OFF_T=y
    < CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
    < CONFIG_HAVE_RSEQ=y
    < CONFIG_HAVE_HW_BREAKPOINT=y
    < CONFIG_HAVE_PERF_REGS=y
    < CONFIG_HAVE_PERF_USER_STACK_DUMP=y
    < CONFIG_HAVE_ARCH_JUMP_LABEL=y
    < CONFIG_MMU_GATHER_TABLE_FREE=y
    < CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
    < CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
    < CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
    < CONFIG_HAVE_ARCH_SECCOMP=y
    < CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
    < CONFIG_SECCOMP=y
    < CONFIG_SECCOMP_FILTER=y
    < # CONFIG_SECCOMP_CACHE_DEBUG is not set
    < CONFIG_HAVE_STACKPROTECTOR=y
    < CONFIG_STACKPROTECTOR=y
    < CONFIG_STACKPROTECTOR_STRONG=y
    < CONFIG_LTO_NONE=y
    < CONFIG_HAVE_CONTEXT_TRACKING_USER=y
    < CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
    < CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
    < CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
    < CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
    < CONFIG_MODULES_USE_ELF_REL=y
    < CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
    < CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y
    < CONFIG_SOFTIRQ_ON_OWN_STACK=y
    < CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
    < CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
    < CONFIG_HAVE_EXIT_THREAD=y
    < CONFIG_ARCH_MMAP_RND_BITS=8
    < CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
    < CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
    < CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
    < CONFIG_CLONE_BACKWARDS=y
    < CONFIG_OLD_SIGSUSPEND3=y
    < CONFIG_OLD_SIGACTION=y
    < CONFIG_COMPAT_32BIT_TIME=y
    < CONFIG_HAVE_ARCH_VMAP_STACK=y
    < CONFIG_VMAP_STACK=y
    < CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y
    < CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y
    < CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
    < CONFIG_STRICT_KERNEL_RWX=y
    < CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
    < CONFIG_STRICT_MODULE_RWX=y
    < # CONFIG_LOCK_EVENT_COUNTS is not set
    < CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
    < CONFIG_HAVE_ARCH_PFN_VALID=y
    < 
    < #
    < # GCOV-based kernel profiling
    < #
    < # CONFIG_GCOV_KERNEL is not set
    < CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
    < # end of GCOV-based kernel profiling
    < 
    < CONFIG_HAVE_GCC_PLUGINS=y
    < # CONFIG_GCC_PLUGINS is not set
    < # end of General architecture-dependent options
    < 
    < CONFIG_RT_MUTEXES=y
    < CONFIG_BASE_SMALL=0
    ---
    > CONFIG_CRYPTO_SHA1_ARM_NEON=m
    > CONFIG_CRYPTO_SHA1_ARM_CE=m
    > CONFIG_CRYPTO_SHA2_ARM_CE=m
    > CONFIG_CRYPTO_SHA512_ARM=m
    > CONFIG_CRYPTO_AES_ARM=m
    > CONFIG_CRYPTO_AES_ARM_BS=m
    > CONFIG_CRYPTO_AES_ARM_CE=m
    > CONFIG_CRYPTO_GHASH_ARM_CE=m
    > CONFIG_CRYPTO_CRC32_ARM_CE=m
    > CONFIG_CRYPTO_CHACHA20_NEON=m
    > CONFIG_CRYPTO_XCBC=m
    706d155
    < # CONFIG_MODULE_FORCE_LOAD is not set
    708,734d156
    < # CONFIG_MODULE_FORCE_UNLOAD is not set
    < # CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set
    < # CONFIG_MODVERSIONS is not set
    < # CONFIG_MODULE_SRCVERSION_ALL is not set
    < # CONFIG_MODULE_SIG is not set
    < CONFIG_MODULE_COMPRESS_NONE=y
    < # CONFIG_MODULE_COMPRESS_GZIP is not set
    < # CONFIG_MODULE_COMPRESS_XZ is not set
    < # CONFIG_MODULE_COMPRESS_ZSTD is not set
    < # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
    < CONFIG_MODPROBE_PATH="/sbin/modprobe"
    < # CONFIG_TRIM_UNUSED_KSYMS is not set
    < CONFIG_MODULES_TREE_LOOKUP=y
    < CONFIG_BLOCK=y
    < CONFIG_BLOCK_LEGACY_AUTOLOAD=y
    < CONFIG_BLK_DEV_BSG_COMMON=y
    < # CONFIG_BLK_DEV_BSGLIB is not set
    < # CONFIG_BLK_DEV_INTEGRITY is not set
    < # CONFIG_BLK_DEV_ZONED is not set
    < # CONFIG_BLK_WBT is not set
    < CONFIG_BLK_DEBUG_FS=y
    < # CONFIG_BLK_SED_OPAL is not set
    < # CONFIG_BLK_INLINE_ENCRYPTION is not set
    < 
    < #
    < # Partition Types
    < #
    736,753d157
    < # CONFIG_ACORN_PARTITION is not set
    < # CONFIG_AIX_PARTITION is not set
    < # CONFIG_OSF_PARTITION is not set
    < # CONFIG_AMIGA_PARTITION is not set
    < # CONFIG_ATARI_PARTITION is not set
    < # CONFIG_MAC_PARTITION is not set
    < CONFIG_MSDOS_PARTITION=y
    < # CONFIG_BSD_DISKLABEL is not set
    < # CONFIG_MINIX_SUBPARTITION is not set
    < # CONFIG_SOLARIS_X86_PARTITION is not set
    < # CONFIG_UNIXWARE_DISKLABEL is not set
    < # CONFIG_LDM_PARTITION is not set
    < # CONFIG_SGI_PARTITION is not set
    < # CONFIG_ULTRIX_PARTITION is not set
    < # CONFIG_SUN_PARTITION is not set
    < # CONFIG_KARMA_PARTITION is not set
    < CONFIG_EFI_PARTITION=y
    < # CONFIG_SYSV68_PARTITION is not set
    755,860d158
    < # end of Partition Types
    < 
    < CONFIG_BLK_MQ_PCI=y
    < CONFIG_BLK_MQ_VIRTIO=y
    < CONFIG_BLK_PM=y
    < 
    < #
    < # IO Schedulers
    < #
    < CONFIG_MQ_IOSCHED_DEADLINE=y
    < CONFIG_MQ_IOSCHED_KYBER=y
    < # CONFIG_IOSCHED_BFQ is not set
    < # end of IO Schedulers
    < 
    < CONFIG_ASN1=y
    < CONFIG_UNINLINE_SPIN_UNLOCK=y
    < CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
    < CONFIG_MUTEX_SPIN_ON_OWNER=y
    < CONFIG_RWSEM_SPIN_ON_OWNER=y
    < CONFIG_LOCK_SPIN_ON_OWNER=y
    < CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
    < CONFIG_FREEZER=y
    < 
    < #
    < # Executable file formats
    < #
    < CONFIG_BINFMT_ELF=y
    < # CONFIG_BINFMT_ELF_FDPIC is not set
    < CONFIG_ELFCORE=y
    < CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
    < CONFIG_BINFMT_SCRIPT=y
    < CONFIG_ARCH_HAS_BINFMT_FLAT=y
    < # CONFIG_BINFMT_FLAT is not set
    < CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y
    < # CONFIG_BINFMT_MISC is not set
    < CONFIG_COREDUMP=y
    < # end of Executable file formats
    < 
    < #
    < # Memory Management options
    < #
    < CONFIG_SWAP=y
    < # CONFIG_ZSWAP is not set
    < 
    < #
    < # SLAB allocator options
    < #
    < # CONFIG_SLAB is not set
    < CONFIG_SLUB=y
    < # CONFIG_SLOB is not set
    < CONFIG_SLAB_MERGE_DEFAULT=y
    < # CONFIG_SLAB_FREELIST_RANDOM is not set
    < # CONFIG_SLAB_FREELIST_HARDENED is not set
    < # CONFIG_SLUB_STATS is not set
    < CONFIG_SLUB_CPU_PARTIAL=y
    < # end of SLAB allocator options
    < 
    < # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
    < CONFIG_COMPAT_BRK=y
    < CONFIG_SELECT_MEMORY_MODEL=y
    < CONFIG_FLATMEM_MANUAL=y
    < # CONFIG_SPARSEMEM_MANUAL is not set
    < CONFIG_FLATMEM=y
    < CONFIG_HAVE_FAST_GUP=y
    < CONFIG_ARCH_KEEP_MEMBLOCK=y
    < CONFIG_MEMORY_ISOLATION=y
    < CONFIG_SPLIT_PTLOCK_CPUS=4
    < CONFIG_COMPACTION=y
    < CONFIG_COMPACT_UNEVICTABLE_DEFAULT=1
    < # CONFIG_PAGE_REPORTING is not set
    < CONFIG_MIGRATION=y
    < CONFIG_CONTIG_ALLOC=y
    < CONFIG_PCP_BATCH_SCALE_MAX=5
    < CONFIG_PHYS_ADDR_T_64BIT=y
    < CONFIG_BOUNCE=y
    < # CONFIG_KSM is not set
    < CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    < CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
    < # CONFIG_TRANSPARENT_HUGEPAGE is not set
    < CONFIG_CMA=y
    < # CONFIG_CMA_DEBUG is not set
    < # CONFIG_CMA_DEBUGFS is not set
    < # CONFIG_CMA_SYSFS is not set
    < CONFIG_CMA_AREAS=7
    < CONFIG_GENERIC_EARLY_IOREMAP=y
    < # CONFIG_IDLE_PAGE_TRACKING is not set
    < CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y
    < CONFIG_ZONE_DMA=y
    < CONFIG_VM_EVENT_COUNTERS=y
    < # CONFIG_PERCPU_STATS is not set
    < # CONFIG_GUP_TEST is not set
    < CONFIG_ARCH_HAS_PTE_SPECIAL=y
    < CONFIG_KMAP_LOCAL=y
    < CONFIG_KMAP_LOCAL_NON_LINEAR_PTE_ARRAY=y
    < # CONFIG_ANON_VMA_NAME is not set
    < # CONFIG_USERFAULTFD is not set
    < # CONFIG_LRU_GEN is not set
    < CONFIG_LOCK_MM_AND_FIND_VMA=y
    < 
    < #
    < # Data Access Monitoring
    < #
    < # CONFIG_DAMON is not set
    < # end of Data Access Monitoring
    < # end of Memory Management options
    < 
    862,866d159
    < CONFIG_SKB_EXTENSIONS=y
    < 
    < #
    < # Networking options
    < #
    868d160
    < # CONFIG_PACKET_DIAG is not set
    870,884d161
    < CONFIG_UNIX_SCM=y
    < CONFIG_AF_UNIX_OOB=y
    < # CONFIG_UNIX_DIAG is not set
    < # CONFIG_TLS is not set
    < CONFIG_XFRM=y
    < CONFIG_XFRM_ALGO=m
    < CONFIG_XFRM_USER=m
    < # CONFIG_XFRM_INTERFACE is not set
    < # CONFIG_XFRM_SUB_POLICY is not set
    < # CONFIG_XFRM_MIGRATE is not set
    < # CONFIG_XFRM_STATISTICS is not set
    < CONFIG_XFRM_AH=m
    < CONFIG_XFRM_ESP=m
    < CONFIG_XFRM_IPCOMP=m
    < # CONFIG_NET_KEY is not set
    886,887c163
    < # CONFIG_IP_MULTICAST is not set
    < # CONFIG_IP_ADVANCED_ROUTER is not set
    ---
    > CONFIG_INET_ESP=m
    892,915d167
    < # CONFIG_NET_IPIP is not set
    < # CONFIG_NET_IPGRE_DEMUX is not set
    < CONFIG_NET_IP_TUNNEL=y
    < # CONFIG_SYN_COOKIES is not set
    < # CONFIG_NET_IPVTI is not set
    < # CONFIG_NET_FOU is not set
    < # CONFIG_NET_FOU_IP_TUNNELS is not set
    < # CONFIG_INET_AH is not set
    < CONFIG_INET_ESP=m
    < # CONFIG_INET_ESP_OFFLOAD is not set
    < # CONFIG_INET_ESPINTCP is not set
    < # CONFIG_INET_IPCOMP is not set
    < CONFIG_INET_TABLE_PERTURB_ORDER=16
    < CONFIG_INET_TUNNEL=y
    < CONFIG_INET_DIAG=y
    < CONFIG_INET_TCP_DIAG=y
    < # CONFIG_INET_UDP_DIAG is not set
    < # CONFIG_INET_RAW_DIAG is not set
    < # CONFIG_INET_DIAG_DESTROY is not set
    < # CONFIG_TCP_CONG_ADVANCED is not set
    < CONFIG_TCP_CONG_CUBIC=y
    < CONFIG_DEFAULT_TCP_CONG="cubic"
    < # CONFIG_TCP_MD5SIG is not set
    < CONFIG_IPV6=y
    917d168
    < # CONFIG_IPV6_ROUTE_INFO is not set
    921,922d171
    < # CONFIG_INET6_ESP_OFFLOAD is not set
    < # CONFIG_INET6_ESPINTCP is not set
    925,930d173
    < CONFIG_INET6_XFRM_TUNNEL=m
    < CONFIG_INET6_TUNNEL=m
    < # CONFIG_IPV6_VTI is not set
    < CONFIG_IPV6_SIT=y
    < # CONFIG_IPV6_SIT_6RD is not set
    < CONFIG_IPV6_NDISC_NODETYPE=y
    933,951d175
    < # CONFIG_IPV6_SUBTREES is not set
    < # CONFIG_IPV6_MROUTE is not set
    < # CONFIG_IPV6_SEG6_LWTUNNEL is not set
    < # CONFIG_IPV6_SEG6_HMAC is not set
    < # CONFIG_IPV6_RPL_LWTUNNEL is not set
    < # CONFIG_IPV6_IOAM6_LWTUNNEL is not set
    < # CONFIG_MPTCP is not set
    < # CONFIG_NETWORK_SECMARK is not set
    < CONFIG_NET_PTP_CLASSIFY=y
    < # CONFIG_NETWORK_PHY_TIMESTAMPING is not set
    < # CONFIG_NETFILTER is not set
    < # CONFIG_BPFILTER is not set
    < # CONFIG_IP_DCCP is not set
    < # CONFIG_IP_SCTP is not set
    < # CONFIG_RDS is not set
    < # CONFIG_TIPC is not set
    < # CONFIG_ATM is not set
    < # CONFIG_L2TP is not set
    < # CONFIG_BRIDGE is not set
    953,993d176
    < # CONFIG_NET_DSA_TAG_AR9331 is not set
    < CONFIG_NET_DSA_TAG_BRCM_COMMON=m
    < CONFIG_NET_DSA_TAG_BRCM=m
    < CONFIG_NET_DSA_TAG_BRCM_LEGACY=m
    < CONFIG_NET_DSA_TAG_BRCM_PREPEND=m
    < # CONFIG_NET_DSA_TAG_HELLCREEK is not set
    < # CONFIG_NET_DSA_TAG_GSWIP is not set
    < # CONFIG_NET_DSA_TAG_DSA is not set
    < # CONFIG_NET_DSA_TAG_EDSA is not set
    < # CONFIG_NET_DSA_TAG_MTK is not set
    < # CONFIG_NET_DSA_TAG_KSZ is not set
    < # CONFIG_NET_DSA_TAG_OCELOT is not set
    < # CONFIG_NET_DSA_TAG_OCELOT_8021Q is not set
    < # CONFIG_NET_DSA_TAG_QCA is not set
    < # CONFIG_NET_DSA_TAG_RTL4_A is not set
    < # CONFIG_NET_DSA_TAG_RTL8_4 is not set
    < # CONFIG_NET_DSA_TAG_RZN1_A5PSW is not set
    < # CONFIG_NET_DSA_TAG_LAN9303 is not set
    < # CONFIG_NET_DSA_TAG_SJA1105 is not set
    < # CONFIG_NET_DSA_TAG_TRAILER is not set
    < # CONFIG_NET_DSA_TAG_XRS700X is not set
    < # CONFIG_VLAN_8021Q is not set
    < # CONFIG_LLC2 is not set
    < # CONFIG_ATALK is not set
    < # CONFIG_X25 is not set
    < # CONFIG_LAPB is not set
    < # CONFIG_PHONET is not set
    < # CONFIG_6LOWPAN is not set
    < # CONFIG_IEEE802154 is not set
    < # CONFIG_NET_SCHED is not set
    < # CONFIG_DCB is not set
    < CONFIG_DNS_RESOLVER=y
    < # CONFIG_BATMAN_ADV is not set
    < # CONFIG_OPENVSWITCH is not set
    < # CONFIG_VSOCKETS is not set
    < # CONFIG_NETLINK_DIAG is not set
    < # CONFIG_MPLS is not set
    < # CONFIG_NET_NSH is not set
    < # CONFIG_HSR is not set
    < CONFIG_NET_SWITCHDEV=y
    < # CONFIG_NET_L3_MASTER_DEV is not set
    996,1017d178
    < # CONFIG_QRTR_TUN is not set
    < # CONFIG_NET_NCSI is not set
    < CONFIG_PCPU_DEV_REFCNT=y
    < CONFIG_RPS=y
    < CONFIG_RFS_ACCEL=y
    < CONFIG_SOCK_RX_QUEUE_MAPPING=y
    < CONFIG_XPS=y
    < # CONFIG_CGROUP_NET_PRIO is not set
    < # CONFIG_CGROUP_NET_CLASSID is not set
    < CONFIG_NET_RX_BUSY_POLL=y
    < CONFIG_BQL=y
    < CONFIG_NET_FLOW_LIMIT=y
    < 
    < #
    < # Network testing
    < #
    < # CONFIG_NET_PKTGEN is not set
    < # CONFIG_NET_DROP_MONITOR is not set
    < # end of Network testing
    < # end of Networking options
    < 
    < # CONFIG_HAMRADIO is not set
    1019,1023d179
    < CONFIG_CAN_RAW=y
    < CONFIG_CAN_BCM=y
    < CONFIG_CAN_GW=y
    < # CONFIG_CAN_J1939 is not set
    < # CONFIG_CAN_ISOTP is not set
    1025,1043d180
    < CONFIG_BT_BREDR=y
    < # CONFIG_BT_RFCOMM is not set
    < # CONFIG_BT_BNEP is not set
    < # CONFIG_BT_HIDP is not set
    < # CONFIG_BT_HS is not set
    < CONFIG_BT_LE=y
    < # CONFIG_BT_LEDS is not set
    < # CONFIG_BT_MSFTEXT is not set
    < # CONFIG_BT_AOSPEXT is not set
    < CONFIG_BT_DEBUGFS=y
    < # CONFIG_BT_SELFTEST is not set
    < # CONFIG_BT_FEATURE_DEBUG is not set
    < 
    < #
    < # Bluetooth device drivers
    < #
    < CONFIG_BT_BCM=m
    < # CONFIG_BT_HCIBTUSB is not set
    < # CONFIG_BT_HCIBTSDIO is not set
    1045,1052d181
    < CONFIG_BT_HCIUART_SERDEV=y
    < CONFIG_BT_HCIUART_H4=y
    < # CONFIG_BT_HCIUART_NOKIA is not set
    < # CONFIG_BT_HCIUART_BCSP is not set
    < # CONFIG_BT_HCIUART_ATH3K is not set
    < # CONFIG_BT_HCIUART_LL is not set
    < # CONFIG_BT_HCIUART_3WIRE is not set
    < # CONFIG_BT_HCIUART_INTEL is not set
    1054,1061d182
    < # CONFIG_BT_HCIUART_RTL is not set
    < # CONFIG_BT_HCIUART_QCA is not set
    < # CONFIG_BT_HCIUART_AG6XX is not set
    < # CONFIG_BT_HCIUART_MRVL is not set
    < # CONFIG_BT_HCIBCM203X is not set
    < # CONFIG_BT_HCIBPA10X is not set
    < # CONFIG_BT_HCIBFUSB is not set
    < # CONFIG_BT_HCIVHCI is not set
    1064,1073c185
    < # CONFIG_BT_MTKSDIO is not set
    < # CONFIG_BT_MTKUART is not set
    < # CONFIG_BT_VIRTIO is not set
    < # end of Bluetooth device drivers
    < 
    < # CONFIG_AF_RXRPC is not set
    < # CONFIG_AF_KCM is not set
    < # CONFIG_MCTP is not set
    < CONFIG_FIB_RULES=y
    < CONFIG_WIRELESS=y
    ---
    > CONFIG_BT_QCOMSMD=m
    1076,1083d187
    < # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
    < # CONFIG_CFG80211_CERTIFICATION_ONUS is not set
    < CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
    < CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
    < CONFIG_CFG80211_DEFAULT_PS=y
    < # CONFIG_CFG80211_DEBUGFS is not set
    < CONFIG_CFG80211_CRDA_SUPPORT=y
    < # CONFIG_CFG80211_WEXT is not set
    1085,1094c189
    < CONFIG_MAC80211_HAS_RC=y
    < CONFIG_MAC80211_RC_MINSTREL=y
    < CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
    < CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
    < # CONFIG_MAC80211_MESH is not set
    < # CONFIG_MAC80211_LEDS is not set
    < # CONFIG_MAC80211_DEBUGFS is not set
    < # CONFIG_MAC80211_MESSAGE_TRACING is not set
    < # CONFIG_MAC80211_DEBUG_MENU is not set
    < CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
    ---
    > CONFIG_IWLWIFI=m
    1096d190
    < CONFIG_RFKILL_LEDS=y
    1099,1102d192
    < # CONFIG_NET_9P is not set
    < # CONFIG_CAIF is not set
    < CONFIG_RPMSG_PROTO=m
    < # CONFIG_CEPH_LIB is not set
    1110,1130d199
    < 
    < #
    < # Near Field Communication (NFC) devices
    < #
    < # CONFIG_NFC_TRF7970A is not set
    < # CONFIG_NFC_SIM is not set
    < # CONFIG_NFC_PORT100 is not set
    < # CONFIG_NFC_VIRTUAL_NCI is not set
    < # CONFIG_NFC_FDP is not set
    < # CONFIG_NFC_PN544_I2C is not set
    < # CONFIG_NFC_PN533_USB is not set
    < # CONFIG_NFC_PN533_I2C is not set
    < # CONFIG_NFC_PN532_UART is not set
    < # CONFIG_NFC_MICROREAD_I2C is not set
    < # CONFIG_NFC_MRVL_USB is not set
    < # CONFIG_NFC_MRVL_UART is not set
    < # CONFIG_NFC_ST21NFCA_I2C is not set
    < # CONFIG_NFC_ST_NCI_I2C is not set
    < # CONFIG_NFC_ST_NCI_SPI is not set
    < # CONFIG_NFC_NXP_NCI is not set
    < CONFIG_NFC_S3FWRN5=m
    1132,1155d200
    < # CONFIG_NFC_S3FWRN82_UART is not set
    < # CONFIG_NFC_ST95HF is not set
    < # end of Near Field Communication (NFC) devices
    < 
    < # CONFIG_PSAMPLE is not set
    < # CONFIG_NET_IFE is not set
    < # CONFIG_LWTUNNEL is not set
    < CONFIG_DST_CACHE=y
    < CONFIG_GRO_CELLS=y
    < CONFIG_NET_SELFTESTS=y
    < CONFIG_NET_DEVLINK=y
    < CONFIG_PAGE_POOL=y
    < CONFIG_PAGE_POOL_STATS=y
    < CONFIG_FAILOVER=y
    < CONFIG_ETHTOOL_NETLINK=y
    < 
    < #
    < # Device Drivers
    < #
    < CONFIG_HAVE_PCI=y
    < CONFIG_PCI=y
    < CONFIG_PCI_DOMAINS=y
    < CONFIG_PCI_DOMAINS_GENERIC=y
    < CONFIG_PCI_SYSCALL=y
    1157,1201c202,205
    < # CONFIG_PCIEAER is not set
    < CONFIG_PCIEASPM=y
    < CONFIG_PCIEASPM_DEFAULT=y
    < # CONFIG_PCIEASPM_POWERSAVE is not set
    < # CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
    < # CONFIG_PCIEASPM_PERFORMANCE is not set
    < CONFIG_PCIE_PME=y
    < # CONFIG_PCIE_PTM is not set
    < CONFIG_PCI_MSI=y
    < CONFIG_PCI_MSI_IRQ_DOMAIN=y
    < CONFIG_PCI_QUIRKS=y
    < # CONFIG_PCI_DEBUG is not set
    < # CONFIG_PCI_STUB is not set
    < CONFIG_PCI_ECAM=y
    < # CONFIG_PCI_IOV is not set
    < # CONFIG_PCI_PRI is not set
    < # CONFIG_PCI_PASID is not set
    < CONFIG_PCI_LABEL=y
    < # CONFIG_PCIE_BUS_TUNE_OFF is not set
    < CONFIG_PCIE_BUS_DEFAULT=y
    < # CONFIG_PCIE_BUS_SAFE is not set
    < # CONFIG_PCIE_BUS_PERFORMANCE is not set
    < # CONFIG_PCIE_BUS_PEER2PEER is not set
    < # CONFIG_VGA_ARB is not set
    < # CONFIG_HOTPLUG_PCI is not set
    < 
    < #
    < # PCI controller drivers
    < #
    < # CONFIG_PCI_FTPCI100 is not set
    < CONFIG_PCI_HOST_COMMON=y
    < CONFIG_PCI_HOST_GENERIC=y
    < # CONFIG_PCIE_XILINX is not set
    < # CONFIG_PCI_V3_SEMI is not set
    < # CONFIG_PCIE_ALTERA is not set
    < # CONFIG_PCIE_MICROCHIP_HOST is not set
    < 
    < #
    < # DesignWare PCI Core Support
    < #
    < CONFIG_PCIE_DW=y
    < CONFIG_PCIE_DW_HOST=y
    < CONFIG_PCIE_DW_EP=y
    < CONFIG_PCI_DRA7XX=y
    < CONFIG_PCI_DRA7XX_HOST=y
    ---
    > CONFIG_PCI_MVEBU=y
    > CONFIG_PCI_TEGRA=y
    > CONFIG_PCI_RCAR_GEN2=y
    > CONFIG_PCIE_RCAR_HOST=y
    1203,1229d206
    < # CONFIG_PCIE_DW_PLAT_HOST is not set
    < # CONFIG_PCIE_DW_PLAT_EP is not set
    < # CONFIG_PCI_KEYSTONE_HOST is not set
    < # CONFIG_PCI_KEYSTONE_EP is not set
    < # CONFIG_PCI_LAYERSCAPE is not set
    < # CONFIG_PCI_LAYERSCAPE_EP is not set
    < CONFIG_PCI_MESON=m
    < # end of DesignWare PCI Core Support
    < 
    < #
    < # Mobiveil PCIe Core Support
    < #
    < # end of Mobiveil PCIe Core Support
    < 
    < #
    < # Cadence PCIe controllers support
    < #
    < # CONFIG_PCIE_CADENCE_PLAT_HOST is not set
    < # CONFIG_PCIE_CADENCE_PLAT_EP is not set
    < # CONFIG_PCI_J721E_HOST is not set
    < # CONFIG_PCI_J721E_EP is not set
    < # end of Cadence PCIe controllers support
    < # end of PCI controller drivers
    < 
    < #
    < # PCI Endpoint
    < #
    1233,1249d209
    < # CONFIG_PCI_EPF_NTB is not set
    < # end of PCI Endpoint
    < 
    < #
    < # PCI switch controller drivers
    < #
    < # CONFIG_PCI_SW_SWITCHTEC is not set
    < # end of PCI switch controller drivers
    < 
    < # CONFIG_CXL_BUS is not set
    < # CONFIG_PCCARD is not set
    < # CONFIG_RAPIDIO is not set
    < 
    < #
    < # Generic Driver Options
    < #
    < # CONFIG_UEVENT_HELPER is not set
    1252,1293d211
    < # CONFIG_DEVTMPFS_SAFE is not set
    < CONFIG_STANDALONE=y
    < CONFIG_PREVENT_FIRMWARE_BUILD=y
    < 
    < #
    < # Firmware loader
    < #
    < CONFIG_FW_LOADER=y
    < CONFIG_EXTRA_FIRMWARE=""
    < # CONFIG_FW_LOADER_USER_HELPER is not set
    < # CONFIG_FW_LOADER_COMPRESS is not set
    < CONFIG_FW_CACHE=y
    < # CONFIG_FW_UPLOAD is not set
    < # end of Firmware loader
    < 
    < CONFIG_WANT_DEV_COREDUMP=y
    < CONFIG_ALLOW_DEV_COREDUMP=y
    < CONFIG_DEV_COREDUMP=y
    < # CONFIG_DEBUG_DRIVER is not set
    < # CONFIG_DEBUG_DEVRES is not set
    < # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
    < # CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
    < CONFIG_GENERIC_CPU_AUTOPROBE=y
    < CONFIG_GENERIC_CPU_VULNERABILITIES=y
    < CONFIG_SOC_BUS=y
    < CONFIG_REGMAP=y
    < CONFIG_REGMAP_I2C=y
    < CONFIG_REGMAP_SPI=y
    < CONFIG_REGMAP_SPMI=m
    < CONFIG_REGMAP_MMIO=y
    < CONFIG_REGMAP_IRQ=y
    < CONFIG_DMA_SHARED_BUFFER=y
    < # CONFIG_DMA_FENCE_TRACE is not set
    < CONFIG_GENERIC_ARCH_TOPOLOGY=y
    < # end of Generic Driver Options
    < 
    < #
    < # Bus devices
    < #
    < CONFIG_BRCMSTB_GISB_ARB=y
    < # CONFIG_MOXTET is not set
    < CONFIG_OMAP_INTERCONNECT=y
    1295,1310d212
    < CONFIG_TI_PWMSS=y
    < CONFIG_TI_SYSC=y
    < CONFIG_VEXPRESS_CONFIG=y
    < # CONFIG_MHI_BUS is not set
    < # CONFIG_MHI_BUS_EP is not set
    < # end of Bus devices
    < 
    < # CONFIG_CONNECTOR is not set
    < 
    < #
    < # Firmware Drivers
    < #
    < 
    < #
    < # ARM System Control and Management Interface Protocol
    < #
    1312,1327c214
    < CONFIG_ARM_SCMI_HAVE_TRANSPORT=y
    < CONFIG_ARM_SCMI_HAVE_SHMEM=y
    < CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y
    < CONFIG_ARM_SCMI_TRANSPORT_SMC=y
    < # CONFIG_ARM_SCMI_TRANSPORT_SMC_ATOMIC_ENABLE is not set
    < # CONFIG_ARM_SCMI_TRANSPORT_VIRTIO is not set
    < CONFIG_ARM_SCMI_POWER_DOMAIN=y
    < # CONFIG_ARM_SCMI_POWER_CONTROL is not set
    < # end of ARM System Control and Management Interface Protocol
    < 
    < # CONFIG_ARM_SCPI_PROTOCOL is not set
    < # CONFIG_FIRMWARE_MEMMAP is not set
    < CONFIG_DMIID=y
    < # CONFIG_DMI_SYSFS is not set
    < # CONFIG_FW_CFG_SYSFS is not set
    < # CONFIG_SYSFB_SIMPLEFB is not set
    ---
    > CONFIG_RASPBERRYPI_FIRMWARE=y
    1329,1342c216,217
    < # CONFIG_GOOGLE_FIRMWARE is not set
    < 
    < #
    < # EFI (Extensible Firmware Interface) Support
    < #
    < CONFIG_EFI_ESRT=y
    < CONFIG_EFI_VARS_PSTORE=y
    < # CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set
    < CONFIG_EFI_PARAMS_FROM_FDT=y
    < CONFIG_EFI_RUNTIME_WRAPPERS=y
    < CONFIG_EFI_GENERIC_STUB=y
    < CONFIG_EFI_ARMSTUB_DTB_LOADER=y
    < # CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER is not set
    < # CONFIG_EFI_BOOTLOADER_CONTROL is not set
    ---
    > CONFIG_BCM47XX_NVRAM=y
    > CONFIG_BCM47XX_SPROM=y
    1344,1363d218
    < # CONFIG_EFI_TEST is not set
    < # CONFIG_RESET_ATTACK_MITIGATION is not set
    < # CONFIG_EFI_DISABLE_PCI_DMA is not set
    < # CONFIG_EFI_DISABLE_RUNTIME is not set
    < # CONFIG_EFI_COCO_SECRET is not set
    < # end of EFI (Extensible Firmware Interface) Support
    < 
    < CONFIG_ARM_PSCI_FW=y
    < # CONFIG_ARM_PSCI_CHECKER is not set
    < CONFIG_HAVE_ARM_SMCCC=y
    < CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y
    < CONFIG_ARM_SMCCC_SOC_ID=y
    < 
    < #
    < # Tegra firmware driver
    < #
    < # end of Tegra firmware driver
    < # end of Firmware Drivers
    < 
    < # CONFIG_GNSS is not set
    1366,1370d220
    < 
    < #
    < # Partition parsers
    < #
    < # CONFIG_MTD_AR7_PARTS is not set
    1372,1380d221
    < CONFIG_MTD_OF_PARTS=y
    < # CONFIG_MTD_AFS_PARTS is not set
    < # CONFIG_MTD_REDBOOT_PARTS is not set
    < # end of Partition parsers
    < 
    < #
    < # User Modules And Translation Layers
    < #
    < CONFIG_MTD_BLKDEVS=y
    1382,1398d222
    < 
    < #
    < # Note that in some cases UBI block is preferred. See MTD_UBI_BLOCK.
    < #
    < # CONFIG_FTL is not set
    < # CONFIG_NFTL is not set
    < # CONFIG_INFTL is not set
    < # CONFIG_RFD_FTL is not set
    < # CONFIG_SSFDC is not set
    < # CONFIG_SM_FTL is not set
    < # CONFIG_MTD_OOPS is not set
    < # CONFIG_MTD_SWAP is not set
    < # CONFIG_MTD_PARTITIONED_MASTER is not set
    < 
    < #
    < # RAM/ROM/Flash chip drivers
    < #
    1400,1407d223
    < # CONFIG_MTD_JEDECPROBE is not set
    < CONFIG_MTD_GEN_PROBE=y
    < # CONFIG_MTD_CFI_ADV_OPTIONS is not set
    < CONFIG_MTD_MAP_BANK_WIDTH_1=y
    < CONFIG_MTD_MAP_BANK_WIDTH_2=y
    < CONFIG_MTD_MAP_BANK_WIDTH_4=y
    < CONFIG_MTD_CFI_I1=y
    < CONFIG_MTD_CFI_I2=y
    1409,1420d224
    < # CONFIG_MTD_CFI_AMDSTD is not set
    < # CONFIG_MTD_CFI_STAA is not set
    < CONFIG_MTD_CFI_UTIL=y
    < # CONFIG_MTD_RAM is not set
    < # CONFIG_MTD_ROM is not set
    < # CONFIG_MTD_ABSENT is not set
    < # end of RAM/ROM/Flash chip drivers
    < 
    < #
    < # Mapping drivers for chip access
    < #
    < # CONFIG_MTD_COMPLEX_MAPPINGS is not set
    1422d225
    < # CONFIG_MTD_PHYSMAP_COMPAT is not set
    1424,1455d226
    < # CONFIG_MTD_PHYSMAP_VERSATILE is not set
    < # CONFIG_MTD_PHYSMAP_GEMINI is not set
    < # CONFIG_MTD_PHYSMAP_IXP4XX is not set
    < # CONFIG_MTD_INTEL_VR_NOR is not set
    < # CONFIG_MTD_PLATRAM is not set
    < # end of Mapping drivers for chip access
    < 
    < #
    < # Self-contained MTD device drivers
    < #
    < # CONFIG_MTD_PMC551 is not set
    < # CONFIG_MTD_DATAFLASH is not set
    < # CONFIG_MTD_MCHP23K256 is not set
    < # CONFIG_MTD_MCHP48L640 is not set
    < # CONFIG_MTD_SST25L is not set
    < # CONFIG_MTD_BCM47XXSFLASH is not set
    < # CONFIG_MTD_SLRAM is not set
    < # CONFIG_MTD_PHRAM is not set
    < # CONFIG_MTD_MTDRAM is not set
    < # CONFIG_MTD_BLOCK2MTD is not set
    < 
    < #
    < # Disk-On-Chip Device Drivers
    < #
    < # CONFIG_MTD_DOCG3 is not set
    < # end of Self-contained MTD device drivers
    < 
    < #
    < # NAND
    < #
    < CONFIG_MTD_NAND_CORE=y
    < # CONFIG_MTD_ONENAND is not set
    1457,1462d227
    < 
    < #
    < # Raw/parallel NAND flash controllers
    < #
    < CONFIG_MTD_NAND_DENALI=y
    < # CONFIG_MTD_NAND_DENALI_PCI is not set
    1466,1467c231,232
    < CONFIG_MTD_NAND_OMAP_BCH_BUILD=y
    < # CONFIG_MTD_NAND_CAFE is not set
    ---
    > CONFIG_MTD_NAND_ATMEL=y
    > CONFIG_MTD_NAND_MARVELL=y
    1469,1472c234,235
    < # CONFIG_MTD_NAND_BRCMNAND_BCM63XX is not set
    < CONFIG_MTD_NAND_BRCMNAND_BCMBCA=y
    < CONFIG_MTD_NAND_BRCMNAND_BRCMSTB=y
    < CONFIG_MTD_NAND_BRCMNAND_IPROC=y
    ---
    > CONFIG_MTD_NAND_GPMI_NAND=y
    > CONFIG_MTD_NAND_VF610_NFC=y
    1474,1506c237,238
    < # CONFIG_MTD_NAND_MXIC is not set
    < # CONFIG_MTD_NAND_GPIO is not set
    < # CONFIG_MTD_NAND_PLATFORM is not set
    < # CONFIG_MTD_NAND_CADENCE is not set
    < # CONFIG_MTD_NAND_ARASAN is not set
    < # CONFIG_MTD_NAND_INTEL_LGM is not set
    < 
    < #
    < # Misc
    < #
    < # CONFIG_MTD_NAND_NANDSIM is not set
    < # CONFIG_MTD_NAND_RICOH is not set
    < # CONFIG_MTD_NAND_DISKONCHIP is not set
    < # CONFIG_MTD_SPI_NAND is not set
    < 
    < #
    < # ECC engine support
    < #
    < CONFIG_MTD_NAND_ECC=y
    < CONFIG_MTD_NAND_ECC_SW_HAMMING=y
    < # CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set
    < # CONFIG_MTD_NAND_ECC_SW_BCH is not set
    < # CONFIG_MTD_NAND_ECC_MXIC is not set
    < # end of ECC engine support
    < # end of NAND
    < 
    < #
    < # LPDDR & LPDDR2 PCM memory drivers
    < #
    < # CONFIG_MTD_LPDDR is not set
    < # CONFIG_MTD_LPDDR2_NVM is not set
    < # end of LPDDR & LPDDR2 PCM memory drivers
    < 
    ---
    > CONFIG_MTD_NAND_STM32_FMC2=y
    > CONFIG_MTD_NAND_PL35X=y
    1508,1511d239
    < CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
    < # CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set
    < CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y
    < # CONFIG_MTD_SPI_NOR_SWP_KEEP is not set
    1513,1536d240
    < CONFIG_MTD_UBI_WL_THRESHOLD=4096
    < CONFIG_MTD_UBI_BEB_LIMIT=20
    < # CONFIG_MTD_UBI_FASTMAP is not set
    < # CONFIG_MTD_UBI_GLUEBI is not set
    < # CONFIG_MTD_UBI_BLOCK is not set
    < # CONFIG_MTD_HYPERBUS is not set
    < CONFIG_DTC=y
    < CONFIG_OF=y
    < # CONFIG_OF_UNITTEST is not set
    < CONFIG_OF_FLATTREE=y
    < CONFIG_OF_EARLY_FLATTREE=y
    < CONFIG_OF_KOBJ=y
    < CONFIG_OF_DYNAMIC=y
    < CONFIG_OF_ADDRESS=y
    < CONFIG_OF_IRQ=y
    < CONFIG_OF_RESERVED_MEM=y
    < # CONFIG_OF_OVERLAY is not set
    < CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
    < # CONFIG_PARPORT is not set
    < CONFIG_BLK_DEV=y
    < # CONFIG_BLK_DEV_NULL_BLK is not set
    < CONFIG_CDROM=y
    < # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
    < # CONFIG_ZRAM is not set
    1538,1540d241
    < CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
    < # CONFIG_BLK_DEV_DRBD is not set
    < # CONFIG_BLK_DEV_NBD is not set
    1542d242
    < CONFIG_BLK_DEV_RAM_COUNT=16
    1544,1545d243
    < # CONFIG_CDROM_PKTCDVD is not set
    < # CONFIG_ATA_OVER_ETH is not set
    1547,1561d244
    < # CONFIG_BLK_DEV_RBD is not set
    < # CONFIG_BLK_DEV_UBLK is not set
    < 
    < #
    < # NVME Support
    < #
    < # CONFIG_BLK_DEV_NVME is not set
    < # CONFIG_NVME_FC is not set
    < # CONFIG_NVME_TCP is not set
    < # CONFIG_NVME_TARGET is not set
    < # end of NVME Support
    < 
    < #
    < # Misc devices
    < #
    1564,1567d246
    < # CONFIG_AD525X_DPOT_SPI is not set
    < # CONFIG_DUMMY_IRQ is not set
    < # CONFIG_PHANTOM is not set
    < # CONFIG_TIFM_CORE is not set
    1569,1571c248,250
    < # CONFIG_ENCLOSURE_SERVICES is not set
    < # CONFIG_HI6421V600_IRQ is not set
    < # CONFIG_HP_ILO is not set
    ---
    > CONFIG_ATMEL_SSC=m
    > CONFIG_QCOM_COINCELL=m
    > CONFIG_QCOM_FASTRPC=m
    1574,1582d252
    < # CONFIG_ISL29020 is not set
    < # CONFIG_SENSORS_TSL2550 is not set
    < # CONFIG_SENSORS_BH1770 is not set
    < # CONFIG_SENSORS_APDS990X is not set
    < # CONFIG_HMC6352 is not set
    < # CONFIG_DS1682 is not set
    < # CONFIG_LATTICE_ECP3_CONFIG is not set
    < CONFIG_SRAM=y
    < CONFIG_SRAM_EXEC=y
    1584d253
    < # CONFIG_DW_XDATA_PCIE is not set
    1586,1595d254
    < # CONFIG_XILINX_SDFEC is not set
    < # CONFIG_HISI_HIKEY_USB is not set
    < # CONFIG_OPEN_DICE is not set
    < # CONFIG_VCPU_STALL_DETECTOR is not set
    < CONFIG_DMA_BUF_PHYS=y
    < # CONFIG_C2PORT is not set
    < 
    < #
    < # EEPROM support
    < #
    1597,1640d255
    < # CONFIG_EEPROM_AT25 is not set
    < # CONFIG_EEPROM_LEGACY is not set
    < # CONFIG_EEPROM_MAX6875 is not set
    < CONFIG_EEPROM_93CX6=y
    < # CONFIG_EEPROM_93XX46 is not set
    < # CONFIG_EEPROM_IDT_89HPESX is not set
    < # CONFIG_EEPROM_EE1004 is not set
    < # end of EEPROM support
    < 
    < # CONFIG_CB710_CORE is not set
    < 
    < #
    < # Texas Instruments shared transport line discipline
    < #
    < # CONFIG_TI_ST is not set
    < # end of Texas Instruments shared transport line discipline
    < 
    < # CONFIG_SENSORS_LIS3_SPI is not set
    < # CONFIG_SENSORS_LIS3_I2C is not set
    < # CONFIG_ALTERA_STAPL is not set
    < # CONFIG_ECHO is not set
    < # CONFIG_BCM_VK is not set
    < # CONFIG_MISC_ALCOR_PCI is not set
    < # CONFIG_MISC_RTSX_PCI is not set
    < # CONFIG_MISC_RTSX_USB is not set
    < # CONFIG_HABANA_AI is not set
    < # CONFIG_UACCE is not set
    < # CONFIG_PVPANIC is not set
    < # CONFIG_GP_PCI1XXXX is not set
    < # end of Misc devices
    < 
    < #
    < # SCSI device support
    < #
    < CONFIG_SCSI_MOD=y
    < # CONFIG_RAID_ATTRS is not set
    < CONFIG_SCSI_COMMON=y
    < CONFIG_SCSI=y
    < CONFIG_SCSI_DMA=y
    < CONFIG_SCSI_PROC_FS=y
    < 
    < #
    < # SCSI support type (disk, tape, CD-ROM)
    < #
    1642d256
    < # CONFIG_CHR_DEV_ST is not set
    1644,1715d257
    < # CONFIG_CHR_DEV_SG is not set
    < CONFIG_BLK_DEV_BSG=y
    < # CONFIG_CHR_DEV_SCH is not set
    < # CONFIG_SCSI_CONSTANTS is not set
    < # CONFIG_SCSI_LOGGING is not set
    < # CONFIG_SCSI_SCAN_ASYNC is not set
    < 
    < #
    < # SCSI Transports
    < #
    < # CONFIG_SCSI_SPI_ATTRS is not set
    < # CONFIG_SCSI_FC_ATTRS is not set
    < # CONFIG_SCSI_ISCSI_ATTRS is not set
    < # CONFIG_SCSI_SAS_ATTRS is not set
    < # CONFIG_SCSI_SAS_LIBSAS is not set
    < # CONFIG_SCSI_SRP_ATTRS is not set
    < # end of SCSI Transports
    < 
    < CONFIG_SCSI_LOWLEVEL=y
    < # CONFIG_ISCSI_TCP is not set
    < # CONFIG_ISCSI_BOOT_SYSFS is not set
    < # CONFIG_SCSI_CXGB3_ISCSI is not set
    < # CONFIG_SCSI_CXGB4_ISCSI is not set
    < # CONFIG_SCSI_BNX2_ISCSI is not set
    < # CONFIG_BE2ISCSI is not set
    < # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
    < # CONFIG_SCSI_HPSA is not set
    < # CONFIG_SCSI_3W_9XXX is not set
    < # CONFIG_SCSI_3W_SAS is not set
    < # CONFIG_SCSI_ACARD is not set
    < # CONFIG_SCSI_AACRAID is not set
    < # CONFIG_SCSI_AIC7XXX is not set
    < # CONFIG_SCSI_AIC79XX is not set
    < # CONFIG_SCSI_AIC94XX is not set
    < # CONFIG_SCSI_MVSAS is not set
    < # CONFIG_SCSI_MVUMI is not set
    < # CONFIG_SCSI_ADVANSYS is not set
    < # CONFIG_SCSI_ARCMSR is not set
    < # CONFIG_SCSI_ESAS2R is not set
    < # CONFIG_MEGARAID_NEWGEN is not set
    < # CONFIG_MEGARAID_LEGACY is not set
    < # CONFIG_MEGARAID_SAS is not set
    < # CONFIG_SCSI_MPT3SAS is not set
    < # CONFIG_SCSI_MPT2SAS is not set
    < # CONFIG_SCSI_MPI3MR is not set
    < # CONFIG_SCSI_SMARTPQI is not set
    < # CONFIG_SCSI_HPTIOP is not set
    < # CONFIG_SCSI_BUSLOGIC is not set
    < # CONFIG_SCSI_MYRB is not set
    < # CONFIG_SCSI_MYRS is not set
    < # CONFIG_SCSI_SNIC is not set
    < # CONFIG_SCSI_DMX3191D is not set
    < # CONFIG_SCSI_FDOMAIN_PCI is not set
    < # CONFIG_SCSI_IPS is not set
    < # CONFIG_SCSI_INITIO is not set
    < # CONFIG_SCSI_INIA100 is not set
    < # CONFIG_SCSI_STEX is not set
    < # CONFIG_SCSI_SYM53C8XX_2 is not set
    < # CONFIG_SCSI_IPR is not set
    < # CONFIG_SCSI_QLOGIC_1280 is not set
    < # CONFIG_SCSI_QLA_ISCSI is not set
    < # CONFIG_SCSI_DC395x is not set
    < # CONFIG_SCSI_AM53C974 is not set
    < # CONFIG_SCSI_NSP32 is not set
    < # CONFIG_SCSI_WD719X is not set
    < # CONFIG_SCSI_DEBUG is not set
    < # CONFIG_SCSI_PMCRAID is not set
    < # CONFIG_SCSI_PM8001 is not set
    < # CONFIG_SCSI_VIRTIO is not set
    < # CONFIG_SCSI_DH is not set
    < # end of SCSI device support
    < 
    1717,1724d258
    < CONFIG_SATA_HOST=y
    < CONFIG_ATA_VERBOSE_ERROR=y
    < CONFIG_ATA_FORCE=y
    < CONFIG_SATA_PMP=y
    < 
    < #
    < # Controllers with non-SFF native interface
    < #
    1726d259
    < CONFIG_SATA_MOBILE_LPM_POLICY=0
    1727a261
    > CONFIG_AHCI_BRCM=y
    1728a263,266
    > CONFIG_AHCI_ST=y
    > CONFIG_AHCI_IMX=y
    > CONFIG_AHCI_SUNXI=y
    > CONFIG_AHCI_TEGRA=y
    1730,1749c268
    < # CONFIG_AHCI_CEVA is not set
    < # CONFIG_AHCI_QORIQ is not set
    < # CONFIG_SATA_INIC162X is not set
    < # CONFIG_SATA_ACARD_AHCI is not set
    < # CONFIG_SATA_SIL24 is not set
    < CONFIG_ATA_SFF=y
    < 
    < #
    < # SFF controllers with custom DMA interface
    < #
    < # CONFIG_PDC_ADMA is not set
    < # CONFIG_SATA_QSTOR is not set
    < # CONFIG_SATA_SX4 is not set
    < CONFIG_ATA_BMDMA=y
    < 
    < #
    < # SATA SFF controllers with BMDMA
    < #
    < # CONFIG_ATA_PIIX is not set
    < # CONFIG_SATA_DWC is not set
    ---
    > CONFIG_SATA_HIGHBANK=y
    1751,1822c270
    < # CONFIG_SATA_NV is not set
    < # CONFIG_SATA_PROMISE is not set
    < # CONFIG_SATA_SIL is not set
    < # CONFIG_SATA_SIS is not set
    < # CONFIG_SATA_SVW is not set
    < # CONFIG_SATA_ULI is not set
    < # CONFIG_SATA_VIA is not set
    < # CONFIG_SATA_VITESSE is not set
    < 
    < #
    < # PATA SFF controllers with BMDMA
    < #
    < # CONFIG_PATA_ALI is not set
    < # CONFIG_PATA_AMD is not set
    < # CONFIG_PATA_ARTOP is not set
    < # CONFIG_PATA_ATIIXP is not set
    < # CONFIG_PATA_ATP867X is not set
    < # CONFIG_PATA_CMD64X is not set
    < # CONFIG_PATA_CYPRESS is not set
    < # CONFIG_PATA_EFAR is not set
    < # CONFIG_PATA_HPT366 is not set
    < # CONFIG_PATA_HPT37X is not set
    < # CONFIG_PATA_HPT3X2N is not set
    < # CONFIG_PATA_HPT3X3 is not set
    < # CONFIG_PATA_IT8213 is not set
    < # CONFIG_PATA_IT821X is not set
    < # CONFIG_PATA_JMICRON is not set
    < # CONFIG_PATA_MARVELL is not set
    < # CONFIG_PATA_NETCELL is not set
    < # CONFIG_PATA_NINJA32 is not set
    < # CONFIG_PATA_NS87415 is not set
    < # CONFIG_PATA_OLDPIIX is not set
    < # CONFIG_PATA_OPTIDMA is not set
    < # CONFIG_PATA_PDC2027X is not set
    < # CONFIG_PATA_PDC_OLD is not set
    < # CONFIG_PATA_RADISYS is not set
    < # CONFIG_PATA_RDC is not set
    < # CONFIG_PATA_SCH is not set
    < # CONFIG_PATA_SERVERWORKS is not set
    < # CONFIG_PATA_SIL680 is not set
    < # CONFIG_PATA_SIS is not set
    < # CONFIG_PATA_TOSHIBA is not set
    < # CONFIG_PATA_TRIFLEX is not set
    < # CONFIG_PATA_VIA is not set
    < # CONFIG_PATA_WINBOND is not set
    < 
    < #
    < # PIO-only SFF controllers
    < #
    < # CONFIG_PATA_CMD640_PCI is not set
    < # CONFIG_PATA_MPIIX is not set
    < # CONFIG_PATA_NS87410 is not set
    < # CONFIG_PATA_OPTI is not set
    < # CONFIG_PATA_OF_PLATFORM is not set
    < # CONFIG_PATA_RZ1000 is not set
    < 
    < #
    < # Generic fallback / legacy drivers
    < #
    < # CONFIG_ATA_GENERIC is not set
    < # CONFIG_PATA_LEGACY is not set
    < # CONFIG_MD is not set
    < # CONFIG_TARGET_CORE is not set
    < # CONFIG_FUSION is not set
    < 
    < #
    < # IEEE 1394 (FireWire) support
    < #
    < # CONFIG_FIREWIRE is not set
    < # CONFIG_FIREWIRE_NOSY is not set
    < # end of IEEE 1394 (FireWire) support
    < 
    ---
    > CONFIG_SATA_RCAR=y
    1824,1842d271
    < CONFIG_MII=y
    < CONFIG_NET_CORE=y
    < # CONFIG_BONDING is not set
    < # CONFIG_DUMMY is not set
    < # CONFIG_WIREGUARD is not set
    < # CONFIG_EQUALIZER is not set
    < # CONFIG_NET_FC is not set
    < # CONFIG_NET_TEAM is not set
    < # CONFIG_MACVLAN is not set
    < # CONFIG_IPVLAN is not set
    < # CONFIG_VXLAN is not set
    < # CONFIG_GENEVE is not set
    < # CONFIG_BAREUDP is not set
    < # CONFIG_GTP is not set
    < # CONFIG_MACSEC is not set
    < # CONFIG_NETCONSOLE is not set
    < # CONFIG_TUN is not set
    < # CONFIG_TUN_VNET_CROSS_LE is not set
    < # CONFIG_VETH is not set
    1844,1850d272
    < # CONFIG_NLMON is not set
    < # CONFIG_ARCNET is not set
    < 
    < #
    < # Distributed Switch Architecture drivers
    < #
    < CONFIG_B53=m
    1854,1855d275
    < CONFIG_B53_SRAB_DRIVER=m
    < CONFIG_B53_SERDES=m
    1857,1897c277
    < # CONFIG_NET_DSA_LOOP is not set
    < # CONFIG_NET_DSA_LANTIQ_GSWIP is not set
    < # CONFIG_NET_DSA_MT7530 is not set
    < # CONFIG_NET_DSA_MV88E6060 is not set
    < # CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON is not set
    < # CONFIG_NET_DSA_MV88E6XXX is not set
    < # CONFIG_NET_DSA_MSCC_SEVILLE is not set
    < # CONFIG_NET_DSA_AR9331 is not set
    < # CONFIG_NET_DSA_QCA8K is not set
    < # CONFIG_NET_DSA_SJA1105 is not set
    < # CONFIG_NET_DSA_XRS700X_I2C is not set
    < # CONFIG_NET_DSA_XRS700X_MDIO is not set
    < # CONFIG_NET_DSA_REALTEK is not set
    < # CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set
    < # CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set
    < # CONFIG_NET_DSA_VITESSE_VSC73XX_SPI is not set
    < # CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM is not set
    < # end of Distributed Switch Architecture drivers
    < 
    < CONFIG_ETHERNET=y
    < CONFIG_NET_VENDOR_3COM=y
    < # CONFIG_VORTEX is not set
    < # CONFIG_TYPHOON is not set
    < CONFIG_NET_VENDOR_ADAPTEC=y
    < # CONFIG_ADAPTEC_STARFIRE is not set
    < CONFIG_NET_VENDOR_AGERE=y
    < # CONFIG_ET131X is not set
    < CONFIG_NET_VENDOR_ALACRITECH=y
    < # CONFIG_SLICOSS is not set
    < CONFIG_NET_VENDOR_ALTEON=y
    < # CONFIG_ACENIC is not set
    < # CONFIG_ALTERA_TSE is not set
    < CONFIG_NET_VENDOR_AMAZON=y
    < # CONFIG_ENA_ETHERNET is not set
    < CONFIG_NET_VENDOR_AMD=y
    < # CONFIG_AMD8111_ETH is not set
    < # CONFIG_PCNET32 is not set
    < CONFIG_NET_VENDOR_AQUANTIA=y
    < # CONFIG_AQTION is not set
    < CONFIG_NET_VENDOR_ARC=y
    < CONFIG_NET_VENDOR_ASIX=y
    ---
    > CONFIG_SUN4I_EMAC=y
    1899,1907d278
    < # CONFIG_SPI_AX88796C_COMPRESSION is not set
    < CONFIG_NET_VENDOR_ATHEROS=y
    < # CONFIG_ATL2 is not set
    < # CONFIG_ATL1 is not set
    < # CONFIG_ATL1E is not set
    < # CONFIG_ATL1C is not set
    < # CONFIG_ALX is not set
    < CONFIG_NET_VENDOR_BROADCOM=y
    < # CONFIG_B44 is not set
    1909,1912c280
    < # CONFIG_BNX2 is not set
    < # CONFIG_CNIC is not set
    < # CONFIG_TIGON3 is not set
    < # CONFIG_BNX2X is not set
    ---
    > CONFIG_BGMAC_BCMA=y
    1914,1915d281
    < # CONFIG_BNXT is not set
    < CONFIG_NET_VENDOR_CADENCE=y
    1917,1947c283
    < CONFIG_MACB_USE_HWSTAMP=y
    < # CONFIG_MACB_PCI is not set
    < CONFIG_NET_VENDOR_CAVIUM=y
    < CONFIG_NET_VENDOR_CHELSIO=y
    < # CONFIG_CHELSIO_T1 is not set
    < # CONFIG_CHELSIO_T3 is not set
    < # CONFIG_CHELSIO_T4 is not set
    < # CONFIG_CHELSIO_T4VF is not set
    < CONFIG_NET_VENDOR_CIRRUS=y
    < # CONFIG_CS89x0_PLATFORM is not set
    < CONFIG_NET_VENDOR_CISCO=y
    < # CONFIG_ENIC is not set
    < CONFIG_NET_VENDOR_CORTINA=y
    < # CONFIG_GEMINI_ETHERNET is not set
    < CONFIG_NET_VENDOR_DAVICOM=y
    < # CONFIG_DM9000 is not set
    < # CONFIG_DM9051 is not set
    < # CONFIG_DNET is not set
    < CONFIG_NET_VENDOR_DEC=y
    < # CONFIG_NET_TULIP is not set
    < CONFIG_NET_VENDOR_DLINK=y
    < # CONFIG_DL2K is not set
    < # CONFIG_SUNDANCE is not set
    < CONFIG_NET_VENDOR_EMULEX=y
    < # CONFIG_BE2NET is not set
    < CONFIG_NET_VENDOR_ENGLEDER=y
    < # CONFIG_TSNEP is not set
    < CONFIG_NET_VENDOR_EZCHIP=y
    < # CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set
    < CONFIG_NET_VENDOR_FARADAY=y
    < # CONFIG_FTMAC100 is not set
    ---
    > CONFIG_NET_CALXEDA_XGMAC=y
    1949,1953c285
    < CONFIG_NET_VENDOR_FUNGIBLE=y
    < # CONFIG_FUN_ETH is not set
    < CONFIG_NET_VENDOR_GOOGLE=y
    < # CONFIG_GVE is not set
    < CONFIG_NET_VENDOR_HISILICON=y
    ---
    > CONFIG_GIANFAR=y
    1955,1964d286
    < # CONFIG_HISI_FEMAC is not set
    < # CONFIG_HIP04_ETH is not set
    < # CONFIG_HNS_DSAF is not set
    < # CONFIG_HNS_ENET is not set
    < # CONFIG_HNS3 is not set
    < CONFIG_NET_VENDOR_HUAWEI=y
    < CONFIG_NET_VENDOR_I825XX=y
    < CONFIG_NET_VENDOR_INTEL=y
    < # CONFIG_E100 is not set
    < # CONFIG_E1000 is not set
    1967,1992c289,291
    < CONFIG_IGB_HWMON=y
    < # CONFIG_IGBVF is not set
    < # CONFIG_IXGB is not set
    < # CONFIG_IXGBE is not set
    < # CONFIG_IXGBEVF is not set
    < # CONFIG_I40E is not set
    < # CONFIG_I40EVF is not set
    < # CONFIG_ICE is not set
    < # CONFIG_FM10K is not set
    < # CONFIG_IGC is not set
    < # CONFIG_JME is not set
    < CONFIG_NET_VENDOR_ADI=y
    < # CONFIG_ADIN1110 is not set
    < CONFIG_NET_VENDOR_LITEX=y
    < # CONFIG_LITEX_LITEETH is not set
    < CONFIG_NET_VENDOR_MARVELL=y
    < CONFIG_MVMDIO=y
    < # CONFIG_SKGE is not set
    < # CONFIG_SKY2 is not set
    < CONFIG_NET_VENDOR_MELLANOX=y
    < # CONFIG_MLX4_EN is not set
    < # CONFIG_MLX5_CORE is not set
    < # CONFIG_MLXSW_CORE is not set
    < # CONFIG_MLXFW is not set
    < CONFIG_NET_VENDOR_MICREL=y
    < # CONFIG_KS8842 is not set
    ---
    > CONFIG_MV643XX_ETH=y
    > CONFIG_MVNETA=y
    > CONFIG_PXA168_ETH=m
    1994,1999d292
    < # CONFIG_KS8851_MLL is not set
    < # CONFIG_KSZ884X_PCI is not set
    < CONFIG_NET_VENDOR_MICROCHIP=y
    < # CONFIG_ENC28J60 is not set
    < # CONFIG_ENCX24J600 is not set
    < # CONFIG_LAN743X is not set
    2001,2043d293
    < CONFIG_NET_VENDOR_MICROSEMI=y
    < # CONFIG_MSCC_OCELOT_SWITCH is not set
    < CONFIG_NET_VENDOR_MICROSOFT=y
    < CONFIG_NET_VENDOR_MYRI=y
    < # CONFIG_MYRI10GE is not set
    < # CONFIG_FEALNX is not set
    < CONFIG_NET_VENDOR_NI=y
    < # CONFIG_NI_XGE_MANAGEMENT_ENET is not set
    < CONFIG_NET_VENDOR_NATSEMI=y
    < # CONFIG_NATSEMI is not set
    < # CONFIG_NS83820 is not set
    < CONFIG_NET_VENDOR_NETERION=y
    < # CONFIG_S2IO is not set
    < CONFIG_NET_VENDOR_NETRONOME=y
    < # CONFIG_NFP is not set
    < CONFIG_NET_VENDOR_8390=y
    < # CONFIG_AX88796 is not set
    < # CONFIG_NE2K_PCI is not set
    < CONFIG_NET_VENDOR_NVIDIA=y
    < # CONFIG_FORCEDETH is not set
    < CONFIG_NET_VENDOR_OKI=y
    < # CONFIG_ETHOC is not set
    < CONFIG_NET_VENDOR_PACKET_ENGINES=y
    < # CONFIG_HAMACHI is not set
    < # CONFIG_YELLOWFIN is not set
    < CONFIG_NET_VENDOR_PENSANDO=y
    < CONFIG_NET_VENDOR_QLOGIC=y
    < # CONFIG_QLA3XXX is not set
    < # CONFIG_QLCNIC is not set
    < # CONFIG_NETXEN_NIC is not set
    < # CONFIG_QED is not set
    < CONFIG_NET_VENDOR_BROCADE=y
    < # CONFIG_BNA is not set
    < CONFIG_NET_VENDOR_QUALCOMM=y
    < # CONFIG_QCA7000_SPI is not set
    < # CONFIG_QCA7000_UART is not set
    < # CONFIG_QCOM_EMAC is not set
    < # CONFIG_RMNET is not set
    < CONFIG_NET_VENDOR_RDC=y
    < # CONFIG_R6040 is not set
    < CONFIG_NET_VENDOR_REALTEK=y
    < # CONFIG_8139CP is not set
    < # CONFIG_8139TOO is not set
    2045,2062c295
    < CONFIG_NET_VENDOR_RENESAS=y
    < CONFIG_NET_VENDOR_ROCKER=y
    < CONFIG_NET_VENDOR_SAMSUNG=y
    < # CONFIG_SXGBE_ETH is not set
    < CONFIG_NET_VENDOR_SEEQ=y
    < CONFIG_NET_VENDOR_SILAN=y
    < # CONFIG_SC92031 is not set
    < CONFIG_NET_VENDOR_SIS=y
    < # CONFIG_SIS900 is not set
    < # CONFIG_SIS190 is not set
    < CONFIG_NET_VENDOR_SOLARFLARE=y
    < # CONFIG_SFC is not set
    < # CONFIG_SFC_FALCON is not set
    < # CONFIG_SFC_SIENA is not set
    < CONFIG_NET_VENDOR_SMSC=y
    < # CONFIG_SMC91X is not set
    < # CONFIG_EPIC100 is not set
    < # CONFIG_SMC911X is not set
    ---
    > CONFIG_SH_ETH=y
    2064,2066c297
    < # CONFIG_SMSC9420 is not set
    < CONFIG_NET_VENDOR_SOCIONEXT=y
    < CONFIG_NET_VENDOR_STMICRO=y
    ---
    > CONFIG_SNI_AVE=y
    2068,2069d298
    < # CONFIG_STMMAC_SELFTESTS is not set
    < CONFIG_STMMAC_PLATFORM=y
    2071,2086d299
    < CONFIG_DWMAC_GENERIC=y
    < # CONFIG_DWMAC_INTEL_PLAT is not set
    < # CONFIG_STMMAC_PCI is not set
    < CONFIG_NET_VENDOR_SUN=y
    < # CONFIG_HAPPYMEAL is not set
    < # CONFIG_SUNGEM is not set
    < # CONFIG_CASSINI is not set
    < # CONFIG_NIU is not set
    < CONFIG_NET_VENDOR_SYNOPSYS=y
    < # CONFIG_DWC_XLGMAC is not set
    < CONFIG_NET_VENDOR_TEHUTI=y
    < # CONFIG_TEHUTI is not set
    < CONFIG_NET_VENDOR_TI=y
    < # CONFIG_TI_DAVINCI_EMAC is not set
    < CONFIG_TI_DAVINCI_MDIO=y
    < # CONFIG_TI_CPSW_PHY_SEL is not set
    2090,2104d302
    < # CONFIG_TLAN is not set
    < CONFIG_TI_PRUETH=m
    < CONFIG_TI_ICSS_IEP=m
    < CONFIG_NET_VENDOR_VERTEXCOM=y
    < # CONFIG_MSE102X is not set
    < CONFIG_NET_VENDOR_VIA=y
    < # CONFIG_VIA_RHINE is not set
    < # CONFIG_VIA_VELOCITY is not set
    < CONFIG_NET_VENDOR_WANGXUN=y
    < # CONFIG_NGBE is not set
    < # CONFIG_TXGBE is not set
    < CONFIG_NET_VENDOR_WIZNET=y
    < # CONFIG_WIZNET_W5100 is not set
    < # CONFIG_WIZNET_W5300 is not set
    < CONFIG_NET_VENDOR_XILINX=y
    2106,2114d303
    < # CONFIG_XILINX_AXI_EMAC is not set
    < # CONFIG_XILINX_LL_TEMAC is not set
    < # CONFIG_FDDI is not set
    < # CONFIG_HIPPI is not set
    < CONFIG_PHYLINK=y
    < CONFIG_PHYLIB=y
    < CONFIG_SWPHY=y
    < # CONFIG_LED_TRIGGER_PHY is not set
    < CONFIG_FIXED_PHY=y
    2116,2124d304
    < 
    < #
    < # MII PHY device drivers
    < #
    < # CONFIG_AMD_PHY is not set
    < # CONFIG_ADIN_PHY is not set
    < # CONFIG_ADIN1100_PHY is not set
    < # CONFIG_AQUANTIA_PHY is not set
    < CONFIG_AX88796B_PHY=y
    2126,2133d305
    < # CONFIG_BCM54140_PHY is not set
    < CONFIG_BCM7XXX_PHY=m
    < # CONFIG_BCM84881_PHY is not set
    < # CONFIG_BCM87XX_PHY is not set
    < CONFIG_BCM_NET_PHYLIB=y
    < # CONFIG_CICADA_PHY is not set
    < # CONFIG_CORTINA_PHY is not set
    < # CONFIG_DAVICOM_PHY is not set
    2135,2137d306
    < # CONFIG_LXT_PHY is not set
    < # CONFIG_INTEL_XWAY_PHY is not set
    < # CONFIG_LSI_ET1011C_PHY is not set
    2139,2150d307
    < # CONFIG_MARVELL_10G_PHY is not set
    < # CONFIG_MARVELL_88X2222_PHY is not set
    < # CONFIG_MAXLINEAR_GPHY is not set
    < # CONFIG_MEDIATEK_GE_PHY is not set
    < CONFIG_MICREL_PHY=y
    < CONFIG_MICROCHIP_PHY=m
    < # CONFIG_MICROCHIP_T1_PHY is not set
    < # CONFIG_MICROSEMI_PHY is not set
    < # CONFIG_MOTORCOMM_PHY is not set
    < # CONFIG_NATIONAL_PHY is not set
    < # CONFIG_NXP_C45_TJA11XX_PHY is not set
    < # CONFIG_NXP_TJA11XX_PHY is not set
    2152,2154d308
    < # CONFIG_QSEMI_PHY is not set
    < CONFIG_REALTEK_PHY=y
    < # CONFIG_RENESAS_PHY is not set
    2156,2160d309
    < CONFIG_SMSC_PHY=y
    < # CONFIG_STE10XP is not set
    < # CONFIG_TERANETICS_PHY is not set
    < # CONFIG_DP83822_PHY is not set
    < # CONFIG_DP83TC811_PHY is not set
    2163,2175c312
    < # CONFIG_DP83869_PHY is not set
    < # CONFIG_DP83TD510_PHY is not set
    < # CONFIG_VITESSE_PHY is not set
    < # CONFIG_XILINX_GMII2RGMII is not set
    < # CONFIG_MICREL_KS8995MA is not set
    < # CONFIG_PSE_CONTROLLER is not set
    < CONFIG_CAN_DEV=y
    < # CONFIG_CAN_VCAN is not set
    < # CONFIG_CAN_VXCAN is not set
    < CONFIG_CAN_NETLINK=y
    < CONFIG_CAN_CALC_BITTIMING=y
    < CONFIG_CAN_RX_OFFLOAD=y
    < # CONFIG_CAN_CAN327 is not set
    ---
    > CONFIG_CAN_AT91=m
    2177,2196c314,316
    < # CONFIG_CAN_GRCAN is not set
    < # CONFIG_CAN_KVASER_PCIEFD is not set
    < # CONFIG_CAN_SLCAN is not set
    < # CONFIG_CAN_TI_HECC is not set
    < CONFIG_CAN_C_CAN=m
    < CONFIG_CAN_C_CAN_PLATFORM=m
    < # CONFIG_CAN_C_CAN_PCI is not set
    < # CONFIG_CAN_CC770 is not set
    < # CONFIG_CAN_CTUCANFD_PCI is not set
    < # CONFIG_CAN_CTUCANFD_PLATFORM is not set
    < # CONFIG_CAN_IFI_CANFD is not set
    < # CONFIG_CAN_M_CAN is not set
    < # CONFIG_CAN_PEAK_PCIEFD is not set
    < # CONFIG_CAN_SJA1000 is not set
    < # CONFIG_CAN_SOFTING is not set
    < 
    < #
    < # CAN SPI interfaces
    < #
    < # CONFIG_CAN_HI311X is not set
    ---
    > CONFIG_CAN_SUN4I=y
    > CONFIG_CAN_XILINXCAN=y
    > CONFIG_CAN_RCAR=m
    2198,2226d317
    < # CONFIG_CAN_MCP251XFD is not set
    < # end of CAN SPI interfaces
    < 
    < #
    < # CAN USB interfaces
    < #
    < # CONFIG_CAN_8DEV_USB is not set
    < # CONFIG_CAN_EMS_USB is not set
    < # CONFIG_CAN_ESD_USB is not set
    < # CONFIG_CAN_ETAS_ES58X is not set
    < # CONFIG_CAN_GS_USB is not set
    < # CONFIG_CAN_KVASER_USB is not set
    < # CONFIG_CAN_MCBA_USB is not set
    < # CONFIG_CAN_PEAK_USB is not set
    < # CONFIG_CAN_UCAN is not set
    < # end of CAN USB interfaces
    < 
    < # CONFIG_CAN_DEBUG_DEVICES is not set
    < CONFIG_MDIO_DEVICE=y
    < CONFIG_MDIO_BUS=y
    < CONFIG_FWNODE_MDIO=y
    < CONFIG_OF_MDIO=y
    < CONFIG_MDIO_DEVRES=y
    < CONFIG_MDIO_BITBANG=y
    < CONFIG_MDIO_BCM_UNIMAC=m
    < # CONFIG_MDIO_GPIO is not set
    < # CONFIG_MDIO_HISI_FEMAC is not set
    < CONFIG_MDIO_I2C=m
    < # CONFIG_MDIO_MVUSB is not set
    2228,2248d318
    < # CONFIG_MDIO_IPQ4019 is not set
    < # CONFIG_MDIO_IPQ8064 is not set
    < 
    < #
    < # MDIO Multiplexers
    < #
    < # CONFIG_MDIO_BUS_MUX_GPIO is not set
    < # CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set
    < # CONFIG_MDIO_BUS_MUX_MMIOREG is not set
    < 
    < #
    < # PCS device drivers
    < #
    < CONFIG_PCS_XPCS=y
    < # end of PCS device drivers
    < 
    < # CONFIG_PPP is not set
    < # CONFIG_SLIP is not set
    < CONFIG_USB_NET_DRIVERS=y
    < # CONFIG_USB_CATC is not set
    < # CONFIG_USB_KAWETH is not set
    2250d319
    < # CONFIG_USB_RTL8150 is not set
    2254,2263d322
    < CONFIG_USB_NET_AX8817X=y
    < CONFIG_USB_NET_AX88179_178A=y
    < CONFIG_USB_NET_CDCETHER=y
    < # CONFIG_USB_NET_CDC_EEM is not set
    < CONFIG_USB_NET_CDC_NCM=y
    < # CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
    < # CONFIG_USB_NET_CDC_MBIM is not set
    < # CONFIG_USB_NET_DM9601 is not set
    < # CONFIG_USB_NET_SR9700 is not set
    < # CONFIG_USB_NET_SR9800 is not set
    2266,2304d324
    < # CONFIG_USB_NET_GL620A is not set
    < CONFIG_USB_NET_NET1080=y
    < # CONFIG_USB_NET_PLUSB is not set
    < # CONFIG_USB_NET_MCS7830 is not set
    < # CONFIG_USB_NET_RNDIS_HOST is not set
    < CONFIG_USB_NET_CDC_SUBSET_ENABLE=y
    < CONFIG_USB_NET_CDC_SUBSET=y
    < # CONFIG_USB_ALI_M5632 is not set
    < # CONFIG_USB_AN2720 is not set
    < CONFIG_USB_BELKIN=y
    < CONFIG_USB_ARMLINUX=y
    < # CONFIG_USB_EPSON2888 is not set
    < # CONFIG_USB_KC2190 is not set
    < CONFIG_USB_NET_ZAURUS=y
    < # CONFIG_USB_NET_CX82310_ETH is not set
    < # CONFIG_USB_NET_KALMIA is not set
    < # CONFIG_USB_NET_QMI_WWAN is not set
    < # CONFIG_USB_HSO is not set
    < # CONFIG_USB_NET_INT51X1 is not set
    < # CONFIG_USB_IPHETH is not set
    < # CONFIG_USB_SIERRA_NET is not set
    < # CONFIG_USB_VL600 is not set
    < # CONFIG_USB_NET_CH9200 is not set
    < # CONFIG_USB_NET_AQC111 is not set
    < CONFIG_USB_RTL8153_ECM=m
    < CONFIG_WLAN=y
    < CONFIG_WLAN_VENDOR_ADMTEK=y
    < # CONFIG_ADM8211 is not set
    < CONFIG_WLAN_VENDOR_ATH=y
    < # CONFIG_ATH_DEBUG is not set
    < # CONFIG_ATH5K is not set
    < # CONFIG_ATH5K_PCI is not set
    < # CONFIG_ATH9K is not set
    < # CONFIG_ATH9K_HTC is not set
    < # CONFIG_CARL9170 is not set
    < # CONFIG_ATH6KL is not set
    < # CONFIG_AR5523 is not set
    < # CONFIG_WIL6210 is not set
    < # CONFIG_ATH10K is not set
    2306,2314d325
    < # CONFIG_WCN36XX_DEBUGFS is not set
    < CONFIG_WLAN_VENDOR_ATMEL=y
    < # CONFIG_ATMEL is not set
    < # CONFIG_AT76C50X_USB is not set
    < CONFIG_WLAN_VENDOR_BROADCOM=y
    < # CONFIG_B43 is not set
    < # CONFIG_B43LEGACY is not set
    < CONFIG_BRCMUTIL=m
    < # CONFIG_BRCMSMAC is not set
    2316,2349d326
    < CONFIG_BRCMFMAC_PROTO_BCDC=y
    < CONFIG_BRCMFMAC_SDIO=y
    < # CONFIG_BRCMFMAC_USB is not set
    < # CONFIG_BRCMFMAC_PCIE is not set
    < # CONFIG_BRCM_TRACING is not set
    < # CONFIG_BRCMDBG is not set
    < CONFIG_WLAN_VENDOR_CISCO=y
    < CONFIG_WLAN_VENDOR_INTEL=y
    < # CONFIG_IPW2100 is not set
    < # CONFIG_IPW2200 is not set
    < # CONFIG_IWL4965 is not set
    < # CONFIG_IWL3945 is not set
    < CONFIG_IWLWIFI=m
    < # CONFIG_IWLDVM is not set
    < # CONFIG_IWLMVM is not set
    < 
    < #
    < # WARNING: iwlwifi is useless without IWLDVM or IWLMVM
    < #
    < 
    < #
    < # Debugging Options
    < #
    < # CONFIG_IWLWIFI_DEBUG is not set
    < CONFIG_IWLWIFI_DEVICE_TRACING=y
    < # end of Debugging Options
    < 
    < CONFIG_WLAN_VENDOR_INTERSIL=y
    < # CONFIG_HOSTAP is not set
    < # CONFIG_HERMES is not set
    < # CONFIG_P54_COMMON is not set
    < CONFIG_WLAN_VENDOR_MARVELL=y
    < # CONFIG_LIBERTAS is not set
    < # CONFIG_LIBERTAS_THINFIRM is not set
    2352,2374d328
    < # CONFIG_MWIFIEX_PCIE is not set
    < # CONFIG_MWIFIEX_USB is not set
    < # CONFIG_MWL8K is not set
    < CONFIG_WLAN_VENDOR_MEDIATEK=y
    < # CONFIG_MT7601U is not set
    < # CONFIG_MT76x0U is not set
    < # CONFIG_MT76x0E is not set
    < # CONFIG_MT76x2E is not set
    < # CONFIG_MT76x2U is not set
    < # CONFIG_MT7603E is not set
    < # CONFIG_MT7615E is not set
    < # CONFIG_MT7663U is not set
    < # CONFIG_MT7663S is not set
    < # CONFIG_MT7915E is not set
    < # CONFIG_MT7921E is not set
    < # CONFIG_MT7921S is not set
    < # CONFIG_MT7921U is not set
    < CONFIG_WLAN_VENDOR_MICROCHIP=y
    < # CONFIG_WILC1000_SDIO is not set
    < # CONFIG_WILC1000_SPI is not set
    < CONFIG_WLAN_VENDOR_PURELIFI=y
    < # CONFIG_PLFXLC is not set
    < CONFIG_WLAN_VENDOR_RALINK=y
    2376,2381d329
    < # CONFIG_RT2400PCI is not set
    < # CONFIG_RT2500PCI is not set
    < # CONFIG_RT61PCI is not set
    < # CONFIG_RT2800PCI is not set
    < # CONFIG_RT2500USB is not set
    < # CONFIG_RT73USB is not set
    2383,2457d330
    < CONFIG_RT2800USB_RT33XX=y
    < CONFIG_RT2800USB_RT35XX=y
    < # CONFIG_RT2800USB_RT3573 is not set
    < # CONFIG_RT2800USB_RT53XX is not set
    < # CONFIG_RT2800USB_RT55XX is not set
    < # CONFIG_RT2800USB_UNKNOWN is not set
    < CONFIG_RT2800_LIB=m
    < CONFIG_RT2X00_LIB_USB=m
    < CONFIG_RT2X00_LIB=m
    < CONFIG_RT2X00_LIB_FIRMWARE=y
    < CONFIG_RT2X00_LIB_CRYPTO=y
    < CONFIG_RT2X00_LIB_LEDS=y
    < # CONFIG_RT2X00_DEBUG is not set
    < CONFIG_WLAN_VENDOR_REALTEK=y
    < # CONFIG_RTL8180 is not set
    < # CONFIG_RTL8187 is not set
    < CONFIG_RTL_CARDS=m
    < # CONFIG_RTL8192CE is not set
    < # CONFIG_RTL8192SE is not set
    < # CONFIG_RTL8192DE is not set
    < # CONFIG_RTL8723AE is not set
    < # CONFIG_RTL8723BE is not set
    < # CONFIG_RTL8188EE is not set
    < # CONFIG_RTL8192EE is not set
    < # CONFIG_RTL8821AE is not set
    < # CONFIG_RTL8192CU is not set
    < # CONFIG_RTL8XXXU is not set
    < # CONFIG_RTW88 is not set
    < # CONFIG_RTW89 is not set
    < CONFIG_WLAN_VENDOR_RSI=y
    < # CONFIG_RSI_91X is not set
    < CONFIG_WLAN_VENDOR_SILABS=y
    < # CONFIG_WFX is not set
    < CONFIG_WLAN_VENDOR_ST=y
    < # CONFIG_CW1200 is not set
    < CONFIG_WLAN_VENDOR_TI=y
    < # CONFIG_WL1251 is not set
    < # CONFIG_WL12XX is not set
    < # CONFIG_WL18XX is not set
    < # CONFIG_WLCORE is not set
    < CONFIG_WLAN_VENDOR_ZYDAS=y
    < # CONFIG_USB_ZD1201 is not set
    < # CONFIG_ZD1211RW is not set
    < CONFIG_WLAN_VENDOR_QUANTENNA=y
    < # CONFIG_QTNFMAC_PCIE is not set
    < # CONFIG_MAC80211_HWSIM is not set
    < # CONFIG_USB_NET_RNDIS_WLAN is not set
    < # CONFIG_VIRT_WIFI is not set
    < # CONFIG_WAN is not set
    < 
    < #
    < # Wireless WAN
    < #
    < # CONFIG_WWAN is not set
    < # end of Wireless WAN
    < 
    < # CONFIG_VMXNET3 is not set
    < # CONFIG_NETDEVSIM is not set
    < CONFIG_NET_FAILOVER=y
    < # CONFIG_ISDN is not set
    < 
    < #
    < # Input device support
    < #
    < CONFIG_INPUT=y
    < CONFIG_INPUT_LEDS=y
    < CONFIG_INPUT_FF_MEMLESS=m
    < # CONFIG_INPUT_SPARSEKMAP is not set
    < CONFIG_INPUT_MATRIXKMAP=y
    < CONFIG_INPUT_VIVALDIFMAP=y
    < 
    < #
    < # Userland interfaces
    < #
    < # CONFIG_INPUT_MOUSEDEV is not set
    2460,2470d332
    < # CONFIG_INPUT_EVBUG is not set
    < 
    < #
    < # Input Device Drivers
    < #
    < CONFIG_INPUT_KEYBOARD=y
    < # CONFIG_KEYBOARD_ADC is not set
    < # CONFIG_KEYBOARD_ADP5588 is not set
    < # CONFIG_KEYBOARD_ADP5589 is not set
    < CONFIG_KEYBOARD_ATKBD=y
    < # CONFIG_KEYBOARD_QT1050 is not set
    2472,2474d333
    < # CONFIG_KEYBOARD_QT2160 is not set
    < # CONFIG_KEYBOARD_DLINK_DIR685 is not set
    < # CONFIG_KEYBOARD_LKKBD is not set
    2476,2487c335,336
    < # CONFIG_KEYBOARD_GPIO_POLLED is not set
    < # CONFIG_KEYBOARD_TCA6416 is not set
    < # CONFIG_KEYBOARD_TCA8418 is not set
    < # CONFIG_KEYBOARD_MATRIX is not set
    < # CONFIG_KEYBOARD_LM8323 is not set
    < # CONFIG_KEYBOARD_LM8333 is not set
    < # CONFIG_KEYBOARD_MAX7359 is not set
    < # CONFIG_KEYBOARD_MCS is not set
    < # CONFIG_KEYBOARD_MPR121 is not set
    < # CONFIG_KEYBOARD_NEWTON is not set
    < # CONFIG_KEYBOARD_OPENCORES is not set
    < # CONFIG_KEYBOARD_PINEPHONE is not set
    ---
    > CONFIG_KEYBOARD_TEGRA=y
    > CONFIG_KEYBOARD_PXA27x=m
    2489,2506c338,340
    < # CONFIG_KEYBOARD_STOWAWAY is not set
    < # CONFIG_KEYBOARD_SUNKBD is not set
    < # CONFIG_KEYBOARD_OMAP4 is not set
    < # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
    < # CONFIG_KEYBOARD_TWL4030 is not set
    < # CONFIG_KEYBOARD_XTKBD is not set
    < # CONFIG_KEYBOARD_CAP11XX is not set
    < CONFIG_KEYBOARD_BCM=y
    < # CONFIG_KEYBOARD_CYPRESS_SF is not set
    < CONFIG_INPUT_MOUSE=y
    < CONFIG_MOUSE_PS2=y
    < CONFIG_MOUSE_PS2_ALPS=y
    < CONFIG_MOUSE_PS2_BYD=y
    < CONFIG_MOUSE_PS2_LOGIPS2PP=y
    < CONFIG_MOUSE_PS2_SYNAPTICS=y
    < CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
    < CONFIG_MOUSE_PS2_CYPRESS=y
    < CONFIG_MOUSE_PS2_TRACKPOINT=y
    ---
    > CONFIG_KEYBOARD_ST_KEYSCAN=y
    > CONFIG_KEYBOARD_SPEAR=y
    > CONFIG_KEYBOARD_CROS_EC=m
    2508,2515d341
    < CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y
    < # CONFIG_MOUSE_PS2_SENTELIC is not set
    < # CONFIG_MOUSE_PS2_TOUCHKIT is not set
    < CONFIG_MOUSE_PS2_FOCALTECH=y
    < CONFIG_MOUSE_PS2_SMBUS=y
    < # CONFIG_MOUSE_SERIAL is not set
    < # CONFIG_MOUSE_APPLETOUCH is not set
    < # CONFIG_MOUSE_BCM5974 is not set
    2518,2525d343
    < CONFIG_MOUSE_ELAN_I2C_I2C=y
    < # CONFIG_MOUSE_ELAN_I2C_SMBUS is not set
    < # CONFIG_MOUSE_VSXXXAA is not set
    < # CONFIG_MOUSE_GPIO is not set
    < # CONFIG_MOUSE_SYNAPTICS_I2C is not set
    < # CONFIG_MOUSE_SYNAPTICS_USB is not set
    < # CONFIG_INPUT_JOYSTICK is not set
    < # CONFIG_INPUT_TABLET is not set
    2527,2529c345
    < # CONFIG_TOUCHSCREEN_ADS7846 is not set
    < # CONFIG_TOUCHSCREEN_AD7877 is not set
    < # CONFIG_TOUCHSCREEN_AD7879 is not set
    ---
    > CONFIG_TOUCHSCREEN_EDT_FT5X06=y
    2531d346
    < # CONFIG_TOUCHSCREEN_AR1021_I2C is not set
    2533,2556d347
    < # CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 is not set
    < # CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
    < # CONFIG_TOUCHSCREEN_BU21013 is not set
    < # CONFIG_TOUCHSCREEN_BU21029 is not set
    < # CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 is not set
    < # CONFIG_TOUCHSCREEN_CY8CTMA140 is not set
    < # CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
    < # CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
    < # CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
    < # CONFIG_TOUCHSCREEN_DYNAPRO is not set
    < # CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
    < # CONFIG_TOUCHSCREEN_EETI is not set
    < # CONFIG_TOUCHSCREEN_EGALAX is not set
    < # CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
    < # CONFIG_TOUCHSCREEN_EXC3000 is not set
    < # CONFIG_TOUCHSCREEN_FUJITSU is not set
    < # CONFIG_TOUCHSCREEN_GOODIX is not set
    < # CONFIG_TOUCHSCREEN_HIDEEP is not set
    < # CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set
    < # CONFIG_TOUCHSCREEN_ILI210X is not set
    < # CONFIG_TOUCHSCREEN_ILITEK is not set
    < # CONFIG_TOUCHSCREEN_S6SY761 is not set
    < # CONFIG_TOUCHSCREEN_GUNZE is not set
    < # CONFIG_TOUCHSCREEN_EKTF2127 is not set
    2558,2562d348
    < # CONFIG_TOUCHSCREEN_ELO is not set
    < # CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
    < # CONFIG_TOUCHSCREEN_WACOM_I2C is not set
    < # CONFIG_TOUCHSCREEN_MAX11801 is not set
    < # CONFIG_TOUCHSCREEN_MCS5000 is not set
    2564,2574d349
    < # CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
    < # CONFIG_TOUCHSCREEN_MSG2638 is not set
    < # CONFIG_TOUCHSCREEN_MTOUCH is not set
    < # CONFIG_TOUCHSCREEN_IMAGIS is not set
    < # CONFIG_TOUCHSCREEN_IMX6UL_TSC is not set
    < # CONFIG_TOUCHSCREEN_INEXIO is not set
    < # CONFIG_TOUCHSCREEN_MK712 is not set
    < # CONFIG_TOUCHSCREEN_PENMOUNT is not set
    < CONFIG_TOUCHSCREEN_EDT_FT5X06=y
    < # CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
    < # CONFIG_TOUCHSCREEN_TOUCHWIN is not set
    2577d351
    < # CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
    2579,2590d352
    < CONFIG_TOUCHSCREEN_WM9705=y
    < CONFIG_TOUCHSCREEN_WM9712=y
    < CONFIG_TOUCHSCREEN_WM9713=y
    < # CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
    < # CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
    < # CONFIG_TOUCHSCREEN_TSC_SERIO is not set
    < # CONFIG_TOUCHSCREEN_TSC2004 is not set
    < # CONFIG_TOUCHSCREEN_TSC2005 is not set
    < # CONFIG_TOUCHSCREEN_TSC2007 is not set
    < # CONFIG_TOUCHSCREEN_RM_TS is not set
    < # CONFIG_TOUCHSCREEN_SILEAD is not set
    < # CONFIG_TOUCHSCREEN_SIS_I2C is not set
    2592,2602c354,355
    < # CONFIG_TOUCHSCREEN_STMFTS is not set
    < # CONFIG_TOUCHSCREEN_SUR40 is not set
    < # CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
    < # CONFIG_TOUCHSCREEN_SX8654 is not set
    < # CONFIG_TOUCHSCREEN_TPS6507X is not set
    < # CONFIG_TOUCHSCREEN_ZET6223 is not set
    < # CONFIG_TOUCHSCREEN_ZFORCE is not set
    < # CONFIG_TOUCHSCREEN_COLIBRI_VF50 is not set
    < # CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
    < # CONFIG_TOUCHSCREEN_IQS5XX is not set
    < # CONFIG_TOUCHSCREEN_ZINITIX is not set
    ---
    > CONFIG_TOUCHSCREEN_STMPE=y
    > CONFIG_TOUCHSCREEN_SUN4I=y
    2604,2611c357,359
    < # CONFIG_INPUT_AD714X is not set
    < # CONFIG_INPUT_ATMEL_CAPTOUCH is not set
    < # CONFIG_INPUT_BMA150 is not set
    < # CONFIG_INPUT_E3X0_BUTTON is not set
    < # CONFIG_INPUT_MMA8450 is not set
    < # CONFIG_INPUT_GPIO_BEEPER is not set
    < # CONFIG_INPUT_GPIO_DECODER is not set
    < # CONFIG_INPUT_GPIO_VIBRA is not set
    ---
    > CONFIG_INPUT_PM8941_PWRKEY=y
    > CONFIG_INPUT_MAX77693_HAPTIC=m
    > CONFIG_INPUT_MAX8997_HAPTIC=m
    2613,2629c361,362
    < # CONFIG_INPUT_ATI_REMOTE2 is not set
    < # CONFIG_INPUT_KEYSPAN_REMOTE is not set
    < # CONFIG_INPUT_KXTJ9 is not set
    < # CONFIG_INPUT_POWERMATE is not set
    < # CONFIG_INPUT_YEALINK is not set
    < # CONFIG_INPUT_CM109 is not set
    < # CONFIG_INPUT_REGULATOR_HAPTIC is not set
    < # CONFIG_INPUT_TPS65218_PWRBUTTON is not set
    < # CONFIG_INPUT_TWL4030_PWRBUTTON is not set
    < # CONFIG_INPUT_TWL4030_VIBRA is not set
    < # CONFIG_INPUT_UINPUT is not set
    < # CONFIG_INPUT_PALMAS_PWRBUTTON is not set
    < # CONFIG_INPUT_PCF8574 is not set
    < # CONFIG_INPUT_PWM_BEEPER is not set
    < # CONFIG_INPUT_PWM_VIBRA is not set
    < # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
    < # CONFIG_INPUT_DA7280_HAPTICS is not set
    ---
    > CONFIG_INPUT_AXP20X_PEK=m
    > CONFIG_INPUT_DA9063_ONKEY=m
    2631,2641d363
    < CONFIG_INPUT_ADXL34X_I2C=m
    < CONFIG_INPUT_ADXL34X_SPI=m
    < # CONFIG_INPUT_IBM_PANEL is not set
    < # CONFIG_INPUT_IMS_PCU is not set
    < # CONFIG_INPUT_IQS269A is not set
    < # CONFIG_INPUT_IQS626A is not set
    < # CONFIG_INPUT_IQS7222 is not set
    < # CONFIG_INPUT_CMA3000 is not set
    < # CONFIG_INPUT_DRV260X_HAPTICS is not set
    < # CONFIG_INPUT_DRV2665_HAPTICS is not set
    < # CONFIG_INPUT_DRV2667_HAPTICS is not set
    2643,2681c365
    < # CONFIG_RMI4_CORE is not set
    < 
    < #
    < # Hardware I/O ports
    < #
    < CONFIG_SERIO=y
    < CONFIG_SERIO_SERPORT=y
    < # CONFIG_SERIO_PCIPS2 is not set
    < CONFIG_SERIO_LIBPS2=y
    < # CONFIG_SERIO_RAW is not set
    < # CONFIG_SERIO_ALTERA_PS2 is not set
    < # CONFIG_SERIO_PS2MULT is not set
    < # CONFIG_SERIO_ARC_PS2 is not set
    < # CONFIG_SERIO_APBPS2 is not set
    < # CONFIG_SERIO_GPIO_PS2 is not set
    < # CONFIG_USERIO is not set
    < # CONFIG_GAMEPORT is not set
    < # end of Hardware I/O ports
    < # end of Input device support
    < 
    < #
    < # Character devices
    < #
    < CONFIG_TTY=y
    < CONFIG_VT=y
    < CONFIG_CONSOLE_TRANSLATIONS=y
    < CONFIG_VT_CONSOLE=y
    < CONFIG_VT_CONSOLE_SLEEP=y
    < CONFIG_HW_CONSOLE=y
    < CONFIG_VT_HW_CONSOLE_BINDING=y
    < CONFIG_UNIX98_PTYS=y
    < CONFIG_LEGACY_PTYS=y
    < CONFIG_LEGACY_PTY_COUNT=256
    < CONFIG_LDISC_AUTOLOAD=y
    < 
    < #
    < # Serial drivers
    < #
    < CONFIG_SERIAL_EARLYCON=y
    ---
    > CONFIG_SERIO_AMBAKMI=y
    2683,2685d366
    < CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
    < CONFIG_SERIAL_8250_16550A_VARIANTS=y
    < # CONFIG_SERIAL_8250_FINTEK is not set
    2687,2689d367
    < CONFIG_SERIAL_8250_DMA=y
    < CONFIG_SERIAL_8250_PCI=y
    < CONFIG_SERIAL_8250_EXAR=y
    2693a372
    > CONFIG_SERIAL_8250_ASPEED_VUART=m
    2695,2698c374
    < # CONFIG_SERIAL_8250_DETECT_IRQ is not set
    < # CONFIG_SERIAL_8250_RSA is not set
    < CONFIG_SERIAL_8250_DWLIB=y
    < CONFIG_SERIAL_8250_FSL=y
    ---
    > CONFIG_SERIAL_8250_BCM2835AUX=y
    2700c376
    < # CONFIG_SERIAL_8250_RT288X is not set
    ---
    > CONFIG_SERIAL_8250_EM=y
    2702,2703c378,379
    < CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y
    < CONFIG_SERIAL_8250_PERICOM=y
    ---
    > CONFIG_SERIAL_8250_MT6577=y
    > CONFIG_SERIAL_8250_UNIPHIER=y
    2706,2721c382,401
    < 
    < #
    < # Non-8250 serial port support
    < #
    < # CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
    < # CONFIG_SERIAL_MAX3100 is not set
    < # CONFIG_SERIAL_MAX310X is not set
    < # CONFIG_SERIAL_UARTLITE is not set
    < CONFIG_SERIAL_CORE=y
    < CONFIG_SERIAL_CORE_CONSOLE=y
    < # CONFIG_SERIAL_JSM is not set
    < # CONFIG_SERIAL_SIFIVE is not set
    < # CONFIG_SERIAL_SCCNXP is not set
    < # CONFIG_SERIAL_SC16IS7XX is not set
    < # CONFIG_SERIAL_ALTERA_JTAGUART is not set
    < # CONFIG_SERIAL_ALTERA_UART is not set
    ---
    > CONFIG_SERIAL_AMBA_PL011=y
    > CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
    > CONFIG_SERIAL_ATMEL=y
    > CONFIG_SERIAL_ATMEL_CONSOLE=y
    > CONFIG_SERIAL_ATMEL_TTYAT=y
    > CONFIG_SERIAL_MESON=y
    > CONFIG_SERIAL_MESON_CONSOLE=y
    > CONFIG_SERIAL_SAMSUNG=y
    > CONFIG_SERIAL_SAMSUNG_CONSOLE=y
    > CONFIG_SERIAL_TEGRA=y
    > CONFIG_SERIAL_IMX=y
    > CONFIG_SERIAL_IMX_CONSOLE=y
    > CONFIG_SERIAL_SH_SCI=y
    > CONFIG_SERIAL_SH_SCI_NR_UARTS=20
    > CONFIG_SERIAL_MSM=y
    > CONFIG_SERIAL_MSM_CONSOLE=y
    > CONFIG_SERIAL_VT8500=y
    > CONFIG_SERIAL_VT8500_CONSOLE=y
    > CONFIG_SERIAL_BCM63XX=y
    > CONFIG_SERIAL_BCM63XX_CONSOLE=y
    2724,2725d403
    < # CONFIG_SERIAL_ARC is not set
    < # CONFIG_SERIAL_RP2 is not set
    2728d405
    < # CONFIG_SERIAL_FSL_LINFLEXUART is not set
    2733,2743c410,412
    < # CONFIG_SERIAL_SPRD is not set
    < # end of Serial drivers
    < 
    < CONFIG_SERIAL_MCTRL_GPIO=y
    < # CONFIG_SERIAL_NONSTANDARD is not set
    < # CONFIG_N_GSM is not set
    < # CONFIG_NOZOMI is not set
    < # CONFIG_NULL_TTY is not set
    < CONFIG_HVC_DRIVER=y
    < # CONFIG_HVC_DCC is not set
    < # CONFIG_RPMSG_TTY is not set
    ---
    > CONFIG_SERIAL_STM32=y
    > CONFIG_SERIAL_STM32_CONSOLE=y
    > CONFIG_SERIAL_OWL=y
    2745,2746d413
    < CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
    < # CONFIG_TTY_PRINTK is not set
    2748,2749c415,416
    < # CONFIG_IPMI_HANDLER is not set
    < # CONFIG_IPMB_DEVICE_INTERFACE is not set
    ---
    > CONFIG_ASPEED_KCS_IPMI_BMC=m
    > CONFIG_ASPEED_BT_IPMI_BMC=m
    2751,2762c418
    < # CONFIG_HW_RANDOM_TIMERIOMEM is not set
    < # CONFIG_HW_RANDOM_BA431 is not set
    < CONFIG_HW_RANDOM_OMAP=y
    < CONFIG_HW_RANDOM_OMAP3_ROM=y
    < # CONFIG_HW_RANDOM_VIRTIO is not set
    < CONFIG_HW_RANDOM_KEYSTONE=y
    < # CONFIG_HW_RANDOM_CCTRNG is not set
    < # CONFIG_HW_RANDOM_XIPHERA is not set
    < CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=y
    < # CONFIG_APPLICOM is not set
    < CONFIG_DEVMEM=y
    < CONFIG_DEVPORT=y
    ---
    > CONFIG_HW_RANDOM_ST=y
    2764,2769d419
    < CONFIG_HW_RANDOM_TPM=y
    < # CONFIG_TCG_TIS is not set
    < # CONFIG_TCG_TIS_SPI is not set
    < # CONFIG_TCG_TIS_I2C is not set
    < # CONFIG_TCG_TIS_I2C_CR50 is not set
    < # CONFIG_TCG_TIS_I2C_ATMEL is not set
    2771,2787d420
    < # CONFIG_TCG_TIS_I2C_NUVOTON is not set
    < # CONFIG_TCG_ATMEL is not set
    < # CONFIG_TCG_VTPM_PROXY is not set
    < # CONFIG_TCG_TIS_ST33ZP24_I2C is not set
    < # CONFIG_TCG_TIS_ST33ZP24_SPI is not set
    < # CONFIG_XILLYBUS is not set
    < # CONFIG_XILLYUSB is not set
    < CONFIG_RANDOM_TRUST_CPU=y
    < CONFIG_RANDOM_TRUST_BOOTLOADER=y
    < # end of Character devices
    < 
    < #
    < # I2C support
    < #
    < CONFIG_I2C=y
    < CONFIG_I2C_BOARDINFO=y
    < CONFIG_I2C_COMPAT=y
    2789,2793d421
    < CONFIG_I2C_MUX=y
    < 
    < #
    < # Multiplexer I2C Chip support
    < #
    2796,2798d423
    < # CONFIG_I2C_MUX_GPMUX is not set
    < # CONFIG_I2C_MUX_LTC4306 is not set
    < # CONFIG_I2C_MUX_PCA9541 is not set
    2801d425
    < # CONFIG_I2C_MUX_REG is not set
    2803,2836c427,430
    < # CONFIG_I2C_MUX_MLXCPLD is not set
    < # end of Multiplexer I2C Chip support
    < 
    < # CONFIG_I2C_ATR is not set
    < CONFIG_I2C_HELPER_AUTO=y
    < CONFIG_I2C_ALGOBIT=y
    < 
    < #
    < # I2C Hardware Bus support
    < #
    < 
    < #
    < # PC SMBus host controller drivers
    < #
    < # CONFIG_I2C_ALI1535 is not set
    < # CONFIG_I2C_ALI1563 is not set
    < # CONFIG_I2C_ALI15X3 is not set
    < # CONFIG_I2C_AMD756 is not set
    < # CONFIG_I2C_AMD8111 is not set
    < # CONFIG_I2C_I801 is not set
    < # CONFIG_I2C_ISCH is not set
    < # CONFIG_I2C_PIIX4 is not set
    < # CONFIG_I2C_NFORCE2 is not set
    < # CONFIG_I2C_NVIDIA_GPU is not set
    < # CONFIG_I2C_SIS5595 is not set
    < # CONFIG_I2C_SIS630 is not set
    < # CONFIG_I2C_SIS96X is not set
    < # CONFIG_I2C_VIA is not set
    < # CONFIG_I2C_VIAPRO is not set
    < 
    < #
    < # I2C system bus drivers (mostly embedded / system-on-chip)
    < #
    < # CONFIG_I2C_CBUS_GPIO is not set
    ---
    > CONFIG_I2C_ASPEED=m
    > CONFIG_I2C_AT91=m
    > CONFIG_I2C_BCM2835=y
    > CONFIG_I2C_CADENCE=y
    2838,2839d431
    < CONFIG_I2C_DESIGNWARE_CORE=y
    < # CONFIG_I2C_DESIGNWARE_SLAVE is not set
    2841c433
    < # CONFIG_I2C_DESIGNWARE_PCI is not set
    ---
    > CONFIG_I2C_DIGICOLOR=m
    2843,2847c435,441
    < CONFIG_I2C_GPIO=m
    < # CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
    < # CONFIG_I2C_OCORES is not set
    < CONFIG_I2C_OMAP=y
    < # CONFIG_I2C_PCA_PLATFORM is not set
    ---
    > CONFIG_I2C_IMX=y
    > CONFIG_I2C_MESON=y
    > CONFIG_I2C_MV64XXX=y
    > CONFIG_I2C_OWL=y
    > CONFIG_I2C_QCOM_CCI=m
    > CONFIG_I2C_QUP=y
    > CONFIG_I2C_RIIC=y
    2849c443,450
    < # CONFIG_I2C_SIMTEC is not set
    ---
    > CONFIG_I2C_S3C2410=y
    > CONFIG_I2C_SH_MOBILE=y
    > CONFIG_I2C_ST=y
    > CONFIG_I2C_STM32F7=y
    > CONFIG_I2C_SUN6I_P2WI=y
    > CONFIG_I2C_TEGRA=y
    > CONFIG_I2C_UNIPHIER=y
    > CONFIG_I2C_UNIPHIER_F=y
    2851,2870c452,453
    < 
    < #
    < # External I2C/SMBus adapter drivers
    < #
    < # CONFIG_I2C_DIOLAN_U2C is not set
    < # CONFIG_I2C_CP2615 is not set
    < # CONFIG_I2C_PCI1XXXX is not set
    < # CONFIG_I2C_ROBOTFUZZ_OSIF is not set
    < # CONFIG_I2C_TAOS_EVM is not set
    < # CONFIG_I2C_TINY_USB is not set
    < 
    < #
    < # Other I2C/SMBus bus drivers
    < #
    < # CONFIG_I2C_FSI is not set
    < # CONFIG_I2C_VIRTIO is not set
    < # end of I2C Hardware Bus support
    < 
    < # CONFIG_I2C_STUB is not set
    < CONFIG_I2C_SLAVE=y
    ---
    > CONFIG_I2C_RCAR=y
    > CONFIG_I2C_CROS_EC_TUNNEL=m
    2872,2878d454
    < # CONFIG_I2C_SLAVE_TESTUNIT is not set
    < # CONFIG_I2C_DEBUG_CORE is not set
    < # CONFIG_I2C_DEBUG_ALGO is not set
    < # CONFIG_I2C_DEBUG_BUS is not set
    < # end of I2C support
    < 
    < # CONFIG_I3C is not set
    2880,2889c456,460
    < # CONFIG_SPI_DEBUG is not set
    < CONFIG_SPI_MASTER=y
    < CONFIG_SPI_MEM=y
    < 
    < #
    < # SPI Master Controller Drivers
    < #
    < # CONFIG_SPI_ALTERA is not set
    < # CONFIG_SPI_AXI_SPI_ENGINE is not set
    < CONFIG_SPI_BITBANG=y
    ---
    > CONFIG_SPI_ASPEED_SMC=m
    > CONFIG_SPI_ATMEL=m
    > CONFIG_SPI_ATMEL_QUADSPI=m
    > CONFIG_SPI_BCM2835=y
    > CONFIG_SPI_BCM2835AUX=y
    2891,2892d461
    < # CONFIG_SPI_CADENCE_QUADSPI is not set
    < # CONFIG_SPI_CADENCE_XSPI is not set
    2894,2896c463
    < # CONFIG_SPI_DESIGNWARE is not set
    < # CONFIG_SPI_FSI is not set
    < # CONFIG_SPI_NXP_FLEXSPI is not set
    ---
    > CONFIG_SPI_FSL_QUADSPI=m
    2898,2901c465
    < # CONFIG_SPI_FSL_SPI is not set
    < # CONFIG_SPI_MICROCHIP_CORE is not set
    < # CONFIG_SPI_MICROCHIP_CORE_QSPI is not set
    < # CONFIG_SPI_OC_TINY is not set
    ---
    > CONFIG_SPI_FSL_DSPI=m
    2903,2904c467,468
    < CONFIG_SPI_TI_QSPI=y
    < # CONFIG_SPI_PXA2XX is not set
    ---
    > CONFIG_SPI_ORION=y
    > CONFIG_SPI_PL022=y
    2906,2909c470,481
    < # CONFIG_SPI_SC18IS602 is not set
    < # CONFIG_SPI_SIFIVE is not set
    < # CONFIG_SPI_MXIC is not set
    < # CONFIG_SPI_XCOMM is not set
    ---
    > CONFIG_SPI_RSPI=y
    > CONFIG_SPI_QUP=m
    > CONFIG_SPI_S3C64XX=m
    > CONFIG_SPI_SH_MSIOF=m
    > CONFIG_SPI_SH_HSPI=y
    > CONFIG_SPI_STM32=m
    > CONFIG_SPI_STM32_QSPI=y
    > CONFIG_SPI_SUN4I=y
    > CONFIG_SPI_SUN6I=y
    > CONFIG_SPI_TEGRA114=y
    > CONFIG_SPI_TEGRA20_SFLASH=y
    > CONFIG_SPI_TEGRA20_SLINK=y
    2911,2921d482
    < # CONFIG_SPI_ZYNQMP_GQSPI is not set
    < # CONFIG_SPI_AMD is not set
    < 
    < #
    < # SPI Multiplexer support
    < #
    < # CONFIG_SPI_MUX is not set
    < 
    < #
    < # SPI Protocol Masters
    < #
    2923,2926d483
    < # CONFIG_SPI_LOOPBACK_TEST is not set
    < # CONFIG_SPI_TLE62X0 is not set
    < # CONFIG_SPI_SLAVE is not set
    < CONFIG_SPI_DYNAMIC=y
    2928,2967c485
    < # CONFIG_SPMI_HISI3670 is not set
    < # CONFIG_HSI is not set
    < CONFIG_PPS=y
    < # CONFIG_PPS_DEBUG is not set
    < 
    < #
    < # PPS clients support
    < #
    < # CONFIG_PPS_CLIENT_KTIMER is not set
    < # CONFIG_PPS_CLIENT_LDISC is not set
    < # CONFIG_PPS_CLIENT_GPIO is not set
    < 
    < #
    < # PPS generators support
    < #
    < 
    < #
    < # PTP clock support
    < #
    < CONFIG_PTP_1588_CLOCK=y
    < CONFIG_PTP_1588_CLOCK_OPTIONAL=y
    < 
    < #
    < # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
    < #
    < CONFIG_PTP_1588_CLOCK_KVM=y
    < # CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
    < # CONFIG_PTP_1588_CLOCK_IDTCM is not set
    < # CONFIG_PTP_1588_CLOCK_OCP is not set
    < # end of PTP clock support
    < 
    < CONFIG_PINCTRL=y
    < CONFIG_GENERIC_PINCTRL_GROUPS=y
    < CONFIG_PINMUX=y
    < CONFIG_GENERIC_PINMUX_FUNCTIONS=y
    < CONFIG_PINCONF=y
    < CONFIG_GENERIC_PINCONF=y
    < # CONFIG_DEBUG_PINCTRL is not set
    < # CONFIG_PINCTRL_CY8C95X0 is not set
    < # CONFIG_PINCTRL_MCP23S08 is not set
    ---
    > CONFIG_PINCTRL_AS3722=y
    2971d488
    < CONFIG_PINCTRL_SINGLE=y
    2973,2997c490,503
    < # CONFIG_PINCTRL_SX150X is not set
    < 
    < #
    < # Renesas pinctrl drivers
    < #
    < # end of Renesas pinctrl drivers
    < 
    < CONFIG_PINCTRL_TI_IODELAY=y
    < CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y
    < CONFIG_GPIOLIB=y
    < CONFIG_GPIOLIB_FASTPATH_LIMIT=512
    < CONFIG_OF_GPIO=y
    < CONFIG_GPIOLIB_IRQCHIP=y
    < # CONFIG_DEBUG_GPIO is not set
    < # CONFIG_GPIO_SYSFS is not set
    < CONFIG_GPIO_CDEV=y
    < CONFIG_GPIO_CDEV_V1=y
    < CONFIG_GPIO_GENERIC=y
    < 
    < #
    < # Memory mapped GPIO drivers
    < #
    < # CONFIG_GPIO_74XX_MMIO is not set
    < # CONFIG_GPIO_ALTERA is not set
    < # CONFIG_GPIO_CADENCE is not set
    ---
    > CONFIG_PINCTRL_OWL=y
    > CONFIG_PINCTRL_S500=y
    > CONFIG_PINCTRL_MSM=y
    > CONFIG_PINCTRL_APQ8064=y
    > CONFIG_PINCTRL_APQ8084=y
    > CONFIG_PINCTRL_IPQ8064=y
    > CONFIG_PINCTRL_MSM8660=y
    > CONFIG_PINCTRL_MSM8960=y
    > CONFIG_PINCTRL_MSM8X74=y
    > CONFIG_PINCTRL_MSM8916=y
    > CONFIG_PINCTRL_QCOM_SPMI_PMIC=y
    > CONFIG_PINCTRL_QCOM_SSBI_PMIC=y
    > CONFIG_PINCTRL_RZA2=y
    > CONFIG_GPIO_ASPEED_SGPIO=y
    2999,3009c505,508
    < # CONFIG_GPIO_DWAPB is not set
    < # CONFIG_GPIO_EXAR is not set
    < # CONFIG_GPIO_FTGPIO010 is not set
    < CONFIG_GPIO_GENERIC_PLATFORM=y
    < # CONFIG_GPIO_GRGPIO is not set
    < # CONFIG_GPIO_HLWD is not set
    < # CONFIG_GPIO_LOGICVC is not set
    < # CONFIG_GPIO_MB86S7X is not set
    < # CONFIG_GPIO_MPC8XXX is not set
    < CONFIG_GPIO_OMAP=y
    < # CONFIG_GPIO_SIFIVE is not set
    ---
    > CONFIG_GPIO_DWAPB=y
    > CONFIG_GPIO_EM=y
    > CONFIG_GPIO_MXC=y
    > CONFIG_GPIO_RCAR=y
    3011,3022c510,512
    < # CONFIG_GPIO_XILINX is not set
    < # CONFIG_GPIO_ZEVIO is not set
    < # CONFIG_GPIO_AMD_FCH is not set
    < # end of Memory mapped GPIO drivers
    < 
    < #
    < # I2C GPIO expanders
    < #
    < # CONFIG_GPIO_ADNP is not set
    < # CONFIG_GPIO_GW_PLD is not set
    < # CONFIG_GPIO_MAX7300 is not set
    < # CONFIG_GPIO_MAX732X is not set
    ---
    > CONFIG_GPIO_UNIPHIER=y
    > CONFIG_GPIO_XILINX=y
    > CONFIG_GPIO_ZYNQ=y
    3025d514
    < # CONFIG_GPIO_PCA9570 is not set
    3027,3033d515
    < # CONFIG_GPIO_TPIC2810 is not set
    < # end of I2C GPIO expanders
    < 
    < #
    < # MFD GPIO expanders
    < #
    < # CONFIG_HTC_EGPIO is not set
    3035,3036c517
    < # CONFIG_GPIO_TPS65218 is not set
    < # CONFIG_GPIO_TPS6586X is not set
    ---
    > CONFIG_GPIO_TPS6586X=y
    3039,3079c520
    < # CONFIG_GPIO_WM8994 is not set
    < # end of MFD GPIO expanders
    < 
    < #
    < # PCI GPIO expanders
    < #
    < # CONFIG_GPIO_BT8XX is not set
    < # CONFIG_GPIO_PCI_IDIO_16 is not set
    < # CONFIG_GPIO_PCIE_IDIO_24 is not set
    < # CONFIG_GPIO_RDC321X is not set
    < # end of PCI GPIO expanders
    < 
    < #
    < # SPI GPIO expanders
    < #
    < # CONFIG_GPIO_74X164 is not set
    < # CONFIG_GPIO_MAX3191X is not set
    < # CONFIG_GPIO_MAX7301 is not set
    < # CONFIG_GPIO_MC33880 is not set
    < # CONFIG_GPIO_PISOSR is not set
    < # CONFIG_GPIO_XRA1403 is not set
    < # end of SPI GPIO expanders
    < 
    < #
    < # USB GPIO expanders
    < #
    < # end of USB GPIO expanders
    < 
    < #
    < # Virtual GPIO drivers
    < #
    < # CONFIG_GPIO_AGGREGATOR is not set
    < # CONFIG_GPIO_MOCKUP is not set
    < # CONFIG_GPIO_VIRTIO is not set
    < # CONFIG_GPIO_SIM is not set
    < # end of Virtual GPIO drivers
    < 
    < # CONFIG_W1 is not set
    < CONFIG_POWER_RESET=y
    < CONFIG_POWER_RESET_BRCMKONA=y
    < CONFIG_POWER_RESET_BRCMSTB=y
    ---
    > CONFIG_POWER_RESET_AS3722=y
    3082,3086c523,525
    < # CONFIG_POWER_RESET_LTC2952 is not set
    < # CONFIG_POWER_RESET_REGULATOR is not set
    < # CONFIG_POWER_RESET_RESTART is not set
    < # CONFIG_POWER_RESET_VERSATILE is not set
    < CONFIG_POWER_RESET_VEXPRESS=y
    ---
    > CONFIG_POWER_RESET_MSM=y
    > CONFIG_POWER_RESET_QCOM_PON=y
    > CONFIG_POWER_RESET_ST=y
    3088,3099c527
    < CONFIG_POWER_RESET_SYSCON=y
    < CONFIG_POWER_RESET_SYSCON_POWEROFF=y
    < # CONFIG_SYSCON_REBOOT_MODE is not set
    < # CONFIG_NVMEM_REBOOT_MODE is not set
    < CONFIG_POWER_SUPPLY=y
    < # CONFIG_POWER_SUPPLY_DEBUG is not set
    < CONFIG_POWER_SUPPLY_HWMON=y
    < # CONFIG_PDA_POWER is not set
    < # CONFIG_GENERIC_ADC_BATTERY is not set
    < # CONFIG_IP5XXX_POWER is not set
    < # CONFIG_TEST_POWER is not set
    < # CONFIG_CHARGER_ADP5061 is not set
    ---
    > CONFIG_POWER_RESET_RMOBILE=y
    3102,3106d529
    < # CONFIG_BATTERY_CW2015 is not set
    < # CONFIG_BATTERY_DS2780 is not set
    < # CONFIG_BATTERY_DS2781 is not set
    < # CONFIG_BATTERY_DS2782 is not set
    < # CONFIG_BATTERY_SAMSUNG_SDI is not set
    3108,3109d530
    < # CONFIG_CHARGER_SBS is not set
    < # CONFIG_MANAGER_SBS is not set
    3111,3112c532
    < CONFIG_BATTERY_BQ27XXX_I2C=m
    < # CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set
    ---
    > CONFIG_AXP20X_POWER=m
    3116,3119d535
    < # CONFIG_CHARGER_ISP1704 is not set
    < # CONFIG_CHARGER_MAX8903 is not set
    < # CONFIG_CHARGER_TWL4030 is not set
    < # CONFIG_CHARGER_LP8727 is not set
    3121,3133c537,540
    < # CONFIG_CHARGER_MANAGER is not set
    < # CONFIG_CHARGER_LT3651 is not set
    < # CONFIG_CHARGER_LTC4162L is not set
    < # CONFIG_CHARGER_DETECTOR_MAX14656 is not set
    < # CONFIG_CHARGER_MAX77976 is not set
    < # CONFIG_CHARGER_BQ2415X is not set
    < # CONFIG_CHARGER_BQ24190 is not set
    < # CONFIG_CHARGER_BQ24257 is not set
    < # CONFIG_CHARGER_BQ24735 is not set
    < # CONFIG_CHARGER_BQ2515X is not set
    < # CONFIG_CHARGER_BQ25890 is not set
    < # CONFIG_CHARGER_BQ25980 is not set
    < # CONFIG_CHARGER_BQ256XX is not set
    ---
    > CONFIG_CHARGER_MAX14577=m
    > CONFIG_CHARGER_MAX77693=m
    > CONFIG_CHARGER_MAX8997=m
    > CONFIG_CHARGER_MAX8998=m
    3136,3169c543
    < # CONFIG_CHARGER_TPS65217 is not set
    < # CONFIG_BATTERY_GAUGE_LTC2941 is not set
    < # CONFIG_BATTERY_GOLDFISH is not set
    < # CONFIG_BATTERY_RT5033 is not set
    < # CONFIG_CHARGER_RT9455 is not set
    < # CONFIG_CHARGER_UCS1002 is not set
    < # CONFIG_CHARGER_BD99954 is not set
    < # CONFIG_BATTERY_UG3105 is not set
    < CONFIG_HWMON=y
    < # CONFIG_HWMON_DEBUG_CHIP is not set
    < 
    < #
    < # Native drivers
    < #
    < # CONFIG_SENSORS_AD7314 is not set
    < # CONFIG_SENSORS_AD7414 is not set
    < # CONFIG_SENSORS_AD7418 is not set
    < # CONFIG_SENSORS_ADM1025 is not set
    < # CONFIG_SENSORS_ADM1026 is not set
    < # CONFIG_SENSORS_ADM1029 is not set
    < # CONFIG_SENSORS_ADM1031 is not set
    < # CONFIG_SENSORS_ADM1177 is not set
    < # CONFIG_SENSORS_ADM9240 is not set
    < # CONFIG_SENSORS_ADT7310 is not set
    < # CONFIG_SENSORS_ADT7410 is not set
    < # CONFIG_SENSORS_ADT7411 is not set
    < # CONFIG_SENSORS_ADT7462 is not set
    < # CONFIG_SENSORS_ADT7470 is not set
    < # CONFIG_SENSORS_ADT7475 is not set
    < # CONFIG_SENSORS_AHT10 is not set
    < # CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set
    < # CONFIG_SENSORS_AS370 is not set
    < # CONFIG_SENSORS_ASC7621 is not set
    < # CONFIG_SENSORS_AXI_FAN_CONTROL is not set
    ---
    > CONFIG_BATTERY_ACER_A500=m
    3171,3187c545
    < # CONFIG_SENSORS_ATXP1 is not set
    < # CONFIG_SENSORS_CORSAIR_CPRO is not set
    < # CONFIG_SENSORS_CORSAIR_PSU is not set
    < # CONFIG_SENSORS_DRIVETEMP is not set
    < # CONFIG_SENSORS_DS620 is not set
    < # CONFIG_SENSORS_DS1621 is not set
    < # CONFIG_SENSORS_I5K_AMB is not set
    < # CONFIG_SENSORS_F71805F is not set
    < # CONFIG_SENSORS_F71882FG is not set
    < # CONFIG_SENSORS_F75375S is not set
    < # CONFIG_SENSORS_FTSTEUTATES is not set
    < # CONFIG_SENSORS_GL518SM is not set
    < # CONFIG_SENSORS_GL520SM is not set
    < # CONFIG_SENSORS_G760A is not set
    < # CONFIG_SENSORS_G762 is not set
    < # CONFIG_SENSORS_GPIO_FAN is not set
    < # CONFIG_SENSORS_HIH6130 is not set
    ---
    > CONFIG_SENSORS_ASPEED=m
    3189,3233c547
    < # CONFIG_SENSORS_IT87 is not set
    < # CONFIG_SENSORS_JC42 is not set
    < # CONFIG_SENSORS_POWR1220 is not set
    < # CONFIG_SENSORS_LINEAGE is not set
    < # CONFIG_SENSORS_LTC2945 is not set
    < # CONFIG_SENSORS_LTC2947_I2C is not set
    < # CONFIG_SENSORS_LTC2947_SPI is not set
    < # CONFIG_SENSORS_LTC2990 is not set
    < # CONFIG_SENSORS_LTC2992 is not set
    < # CONFIG_SENSORS_LTC4151 is not set
    < # CONFIG_SENSORS_LTC4215 is not set
    < # CONFIG_SENSORS_LTC4222 is not set
    < # CONFIG_SENSORS_LTC4245 is not set
    < # CONFIG_SENSORS_LTC4260 is not set
    < # CONFIG_SENSORS_LTC4261 is not set
    < # CONFIG_SENSORS_MAX1111 is not set
    < # CONFIG_SENSORS_MAX127 is not set
    < # CONFIG_SENSORS_MAX16065 is not set
    < # CONFIG_SENSORS_MAX1619 is not set
    < # CONFIG_SENSORS_MAX1668 is not set
    < # CONFIG_SENSORS_MAX197 is not set
    < # CONFIG_SENSORS_MAX31722 is not set
    < # CONFIG_SENSORS_MAX31730 is not set
    < # CONFIG_SENSORS_MAX31760 is not set
    < # CONFIG_SENSORS_MAX6620 is not set
    < # CONFIG_SENSORS_MAX6621 is not set
    < # CONFIG_SENSORS_MAX6639 is not set
    < # CONFIG_SENSORS_MAX6650 is not set
    < # CONFIG_SENSORS_MAX6697 is not set
    < # CONFIG_SENSORS_MAX31790 is not set
    < # CONFIG_SENSORS_MCP3021 is not set
    < # CONFIG_SENSORS_TC654 is not set
    < # CONFIG_SENSORS_TPS23861 is not set
    < # CONFIG_SENSORS_MR75203 is not set
    < # CONFIG_SENSORS_ADCXX is not set
    < # CONFIG_SENSORS_LM63 is not set
    < # CONFIG_SENSORS_LM70 is not set
    < # CONFIG_SENSORS_LM73 is not set
    < # CONFIG_SENSORS_LM75 is not set
    < # CONFIG_SENSORS_LM77 is not set
    < # CONFIG_SENSORS_LM78 is not set
    < # CONFIG_SENSORS_LM80 is not set
    < # CONFIG_SENSORS_LM83 is not set
    < # CONFIG_SENSORS_LM85 is not set
    < # CONFIG_SENSORS_LM87 is not set
    ---
    > CONFIG_SENSORS_LAN966X=m
    3235,3238d548
    < # CONFIG_SENSORS_LM92 is not set
    < # CONFIG_SENSORS_LM93 is not set
    < # CONFIG_SENSORS_LM95234 is not set
    < # CONFIG_SENSORS_LM95241 is not set
    3240,3241d549
    < # CONFIG_SENSORS_PC87360 is not set
    < # CONFIG_SENSORS_PC87427 is not set
    3243,3253d550
    < # CONFIG_SENSORS_NCT6683 is not set
    < # CONFIG_SENSORS_NCT6775_I2C is not set
    < # CONFIG_SENSORS_NCT7802 is not set
    < # CONFIG_SENSORS_NCT7904 is not set
    < # CONFIG_SENSORS_NPCM7XX is not set
    < # CONFIG_SENSORS_NZXT_KRAKEN2 is not set
    < # CONFIG_SENSORS_NZXT_SMART2 is not set
    < # CONFIG_SENSORS_OCC_P8_I2C is not set
    < # CONFIG_SENSORS_OCC_P9_SBE is not set
    < # CONFIG_SENSORS_PCF8591 is not set
    < # CONFIG_PMBUS is not set
    3255,3279c552
    < # CONFIG_SENSORS_SBTSI is not set
    < # CONFIG_SENSORS_SBRMI is not set
    < # CONFIG_SENSORS_SHT15 is not set
    < # CONFIG_SENSORS_SHT21 is not set
    < # CONFIG_SENSORS_SHT3x is not set
    < # CONFIG_SENSORS_SHT4x is not set
    < # CONFIG_SENSORS_SHTC1 is not set
    < # CONFIG_SENSORS_SIS5595 is not set
    < # CONFIG_SENSORS_DME1737 is not set
    < # CONFIG_SENSORS_EMC1403 is not set
    < # CONFIG_SENSORS_EMC2103 is not set
    < # CONFIG_SENSORS_EMC2305 is not set
    < # CONFIG_SENSORS_EMC6W201 is not set
    < # CONFIG_SENSORS_SMSC47M1 is not set
    < # CONFIG_SENSORS_SMSC47M192 is not set
    < # CONFIG_SENSORS_SMSC47B397 is not set
    < # CONFIG_SENSORS_SCH5627 is not set
    < # CONFIG_SENSORS_SCH5636 is not set
    < # CONFIG_SENSORS_STTS751 is not set
    < # CONFIG_SENSORS_SMM665 is not set
    < # CONFIG_SENSORS_ADC128D818 is not set
    < # CONFIG_SENSORS_ADS7828 is not set
    < # CONFIG_SENSORS_ADS7871 is not set
    < # CONFIG_SENSORS_AMC6821 is not set
    < # CONFIG_SENSORS_INA209 is not set
    ---
    > CONFIG_SENSORS_RASPBERRYPI_HWMON=m
    3281,3319d553
    < # CONFIG_SENSORS_INA238 is not set
    < # CONFIG_SENSORS_INA3221 is not set
    < # CONFIG_SENSORS_TC74 is not set
    < # CONFIG_SENSORS_THMC50 is not set
    < # CONFIG_SENSORS_TMP102 is not set
    < # CONFIG_SENSORS_TMP103 is not set
    < # CONFIG_SENSORS_TMP108 is not set
    < # CONFIG_SENSORS_TMP401 is not set
    < # CONFIG_SENSORS_TMP421 is not set
    < # CONFIG_SENSORS_TMP464 is not set
    < # CONFIG_SENSORS_TMP513 is not set
    < # CONFIG_SENSORS_VEXPRESS is not set
    < # CONFIG_SENSORS_VIA686A is not set
    < # CONFIG_SENSORS_VT1211 is not set
    < # CONFIG_SENSORS_VT8231 is not set
    < # CONFIG_SENSORS_W83773G is not set
    < # CONFIG_SENSORS_W83781D is not set
    < # CONFIG_SENSORS_W83791D is not set
    < # CONFIG_SENSORS_W83792D is not set
    < # CONFIG_SENSORS_W83793 is not set
    < # CONFIG_SENSORS_W83795 is not set
    < # CONFIG_SENSORS_W83L785TS is not set
    < # CONFIG_SENSORS_W83L786NG is not set
    < # CONFIG_SENSORS_W83627HF is not set
    < # CONFIG_SENSORS_W83627EHF is not set
    < CONFIG_THERMAL=y
    < # CONFIG_THERMAL_NETLINK is not set
    < # CONFIG_THERMAL_STATISTICS is not set
    < CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
    < CONFIG_THERMAL_HWMON=y
    < CONFIG_THERMAL_OF=y
    < # CONFIG_THERMAL_WRITABLE_TRIPS is not set
    < CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
    < # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
    < # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
    < # CONFIG_THERMAL_GOV_FAIR_SHARE is not set
    < CONFIG_THERMAL_GOV_STEP_WISE=y
    < # CONFIG_THERMAL_GOV_BANG_BANG is not set
    < # CONFIG_THERMAL_GOV_USER_SPACE is not set
    3321,3329d554
    < CONFIG_CPU_FREQ_THERMAL=y
    < CONFIG_DEVFREQ_THERMAL=y
    < CONFIG_THERMAL_EMULATION=y
    < # CONFIG_THERMAL_MMIO is not set
    < 
    < #
    < # Texas Instruments thermal drivers
    < #
    < CONFIG_TI_SOC_THERMAL=y
    3331,3333c556
    < # CONFIG_OMAP3_THERMAL is not set
    < # CONFIG_OMAP4_THERMAL is not set
    < # CONFIG_OMAP5_THERMAL is not set
    ---
    > CONFIG_THERMAL_EMULATION=y
    3335,3336c558,568
    < # end of Texas Instruments thermal drivers
    < 
    ---
    > CONFIG_DEVFREQ_THERMAL=y
    > CONFIG_IMX_THERMAL=y
    > CONFIG_ROCKCHIP_THERMAL=y
    > CONFIG_RCAR_THERMAL=y
    > CONFIG_ARMADA_THERMAL=y
    > CONFIG_BCM2711_THERMAL=m
    > CONFIG_BCM2835_THERMAL=m
    > CONFIG_BRCMSTB_THERMAL=m
    > CONFIG_ST_THERMAL_MEMMAP=y
    > CONFIG_TEGRA_SOCTHERM=m
    > CONFIG_TEGRA30_TSENSOR=m
    3338,3360c570,578
    < CONFIG_WATCHDOG=y
    < CONFIG_WATCHDOG_CORE=y
    < # CONFIG_WATCHDOG_NOWAYOUT is not set
    < CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
    < CONFIG_WATCHDOG_OPEN_TIMEOUT=0
    < # CONFIG_WATCHDOG_SYSFS is not set
    < # CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set
    < 
    < #
    < # Watchdog Pretimeout Governors
    < #
    < # CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
    < 
    < #
    < # Watchdog Device Drivers
    < #
    < # CONFIG_SOFT_WATCHDOG is not set
    < # CONFIG_GPIO_WATCHDOG is not set
    < # CONFIG_XILINX_WATCHDOG is not set
    < # CONFIG_ZIIRAVE_WATCHDOG is not set
    < # CONFIG_CADENCE_WATCHDOG is not set
    < # CONFIG_FTWDT010_WATCHDOG is not set
    < # CONFIG_DW_WATCHDOG is not set
    ---
    > CONFIG_QCOM_TSENS=y
    > CONFIG_UNIPHIER_THERMAL=y
    > CONFIG_DA9063_WATCHDOG=m
    > CONFIG_XILINX_WATCHDOG=y
    > CONFIG_ARM_SP805_WATCHDOG=y
    > CONFIG_AT91SAM9X_WATCHDOG=y
    > CONFIG_SAMA5D4_WATCHDOG=y
    > CONFIG_S3C2410_WATCHDOG=m
    > CONFIG_DW_WATCHDOG=y
    3363,3365c581,591
    < # CONFIG_TWL4030_WATCHDOG is not set
    < # CONFIG_MAX63XX_WATCHDOG is not set
    < # CONFIG_ARM_SMC_WATCHDOG is not set
    ---
    > CONFIG_ORION_WATCHDOG=y
    > CONFIG_RN5T618_WATCHDOG=y
    > CONFIG_SUNXI_WATCHDOG=y
    > CONFIG_IMX2_WDT=y
    > CONFIG_ST_LPC_WATCHDOG=y
    > CONFIG_TEGRA_WATCHDOG=m
    > CONFIG_QCOM_WDT=m
    > CONFIG_MESON_WATCHDOG=y
    > CONFIG_DIGICOLOR_WATCHDOG=y
    > CONFIG_RENESAS_WDT=m
    > CONFIG_RENESAS_RZAWDT=m
    3367,3386c593,598
    < # CONFIG_ALIM7101_WDT is not set
    < # CONFIG_I6300ESB_WDT is not set
    < # CONFIG_MEN_A21_WDT is not set
    < 
    < #
    < # PCI-based Watchdog Cards
    < #
    < # CONFIG_PCIPCWATCHDOG is not set
    < # CONFIG_WDTPCI is not set
    < 
    < #
    < # USB-based Watchdog Cards
    < #
    < # CONFIG_USBPCWATCHDOG is not set
    < CONFIG_SSB_POSSIBLE=y
    < # CONFIG_SSB is not set
    < CONFIG_BCMA_POSSIBLE=y
    < CONFIG_BCMA=y
    < CONFIG_BCMA_HOST_PCI_POSSIBLE=y
    < CONFIG_BCMA_HOST_PCI=y
    ---
    > CONFIG_PM8916_WATCHDOG=m
    > CONFIG_BCM47XX_WDT=y
    > CONFIG_BCM2835_WDT=y
    > CONFIG_BCM_KONA_WDT=y
    > CONFIG_BCM7038_WDT=m
    > CONFIG_GXP_WATCHDOG=y
    3388,3389d599
    < CONFIG_BCMA_DRIVER_PCI=y
    < CONFIG_BCMA_SFLASH=y
    3392,3397d601
    < # CONFIG_BCMA_DEBUG is not set
    < 
    < #
    < # Multifunction device drivers
    < #
    < CONFIG_MFD_CORE=y
    3399,3450c603,617
    < # CONFIG_MFD_AS3711 is not set
    < # CONFIG_MFD_AS3722 is not set
    < # CONFIG_PMIC_ADP5520 is not set
    < # CONFIG_MFD_AAT2870_CORE is not set
    < # CONFIG_MFD_ATMEL_FLEXCOM is not set
    < # CONFIG_MFD_ATMEL_HLCDC is not set
    < # CONFIG_MFD_BCM590XX is not set
    < # CONFIG_MFD_BD9571MWV is not set
    < # CONFIG_MFD_AXP20X_I2C is not set
    < # CONFIG_MFD_MADERA is not set
    < # CONFIG_MFD_ASIC3 is not set
    < # CONFIG_PMIC_DA903X is not set
    < # CONFIG_MFD_DA9052_SPI is not set
    < # CONFIG_MFD_DA9052_I2C is not set
    < # CONFIG_MFD_DA9055 is not set
    < # CONFIG_MFD_DA9062 is not set
    < # CONFIG_MFD_DA9063 is not set
    < # CONFIG_MFD_DA9150 is not set
    < # CONFIG_MFD_DLN2 is not set
    < # CONFIG_MFD_GATEWORKS_GSC is not set
    < # CONFIG_MFD_MC13XXX_SPI is not set
    < # CONFIG_MFD_MC13XXX_I2C is not set
    < # CONFIG_MFD_MP2629 is not set
    < # CONFIG_MFD_HI6421_PMIC is not set
    < # CONFIG_MFD_HI6421_SPMI is not set
    < # CONFIG_HTC_PASIC3 is not set
    < # CONFIG_HTC_I2CPLD is not set
    < # CONFIG_LPC_ICH is not set
    < # CONFIG_LPC_SCH is not set
    < # CONFIG_MFD_IQS62X is not set
    < # CONFIG_MFD_JANZ_CMODIO is not set
    < # CONFIG_MFD_KEMPLD is not set
    < # CONFIG_MFD_88PM800 is not set
    < # CONFIG_MFD_88PM805 is not set
    < # CONFIG_MFD_88PM860X is not set
    < # CONFIG_MFD_MAX14577 is not set
    < # CONFIG_MFD_MAX77620 is not set
    < # CONFIG_MFD_MAX77650 is not set
    < # CONFIG_MFD_MAX77686 is not set
    < # CONFIG_MFD_MAX77693 is not set
    < # CONFIG_MFD_MAX77714 is not set
    < # CONFIG_MFD_MAX77843 is not set
    < # CONFIG_MFD_MAX8907 is not set
    < # CONFIG_MFD_MAX8925 is not set
    < # CONFIG_MFD_MAX8997 is not set
    < # CONFIG_MFD_MAX8998 is not set
    < # CONFIG_MFD_MT6360 is not set
    < # CONFIG_MFD_MT6370 is not set
    < # CONFIG_MFD_MT6397 is not set
    < # CONFIG_MFD_MENF21BMC is not set
    < # CONFIG_MFD_OCELOT is not set
    < # CONFIG_EZX_PCAP is not set
    ---
    > CONFIG_MFD_AS3711=y
    > CONFIG_MFD_AS3722=y
    > CONFIG_MFD_ATMEL_FLEXCOM=y
    > CONFIG_MFD_ATMEL_HLCDC=m
    > CONFIG_MFD_BCM590XX=y
    > CONFIG_MFD_AC100=y
    > CONFIG_MFD_AXP20X_I2C=y
    > CONFIG_MFD_AXP20X_RSB=y
    > CONFIG_MFD_DA9063=m
    > CONFIG_MFD_MAX14577=y
    > CONFIG_MFD_MAX77686=y
    > CONFIG_MFD_MAX77693=m
    > CONFIG_MFD_MAX8907=y
    > CONFIG_MFD_MAX8997=y
    > CONFIG_MFD_MAX8998=y
    3452,3471c619,625
    < # CONFIG_MFD_VIPERBOARD is not set
    < # CONFIG_MFD_NTXEC is not set
    < # CONFIG_MFD_RETU is not set
    < # CONFIG_MFD_PCF50633 is not set
    < # CONFIG_UCB1400_CORE is not set
    < # CONFIG_MFD_PM8XXX is not set
    < # CONFIG_MFD_SY7636A is not set
    < # CONFIG_MFD_RDC321X is not set
    < # CONFIG_MFD_RT4831 is not set
    < # CONFIG_MFD_RT5033 is not set
    < # CONFIG_MFD_RT5120 is not set
    < # CONFIG_MFD_RC5T583 is not set
    < # CONFIG_MFD_RK808 is not set
    < # CONFIG_MFD_RN5T618 is not set
    < # CONFIG_MFD_SEC_CORE is not set
    < # CONFIG_MFD_SI476X_CORE is not set
    < # CONFIG_MFD_SM501 is not set
    < # CONFIG_MFD_SKY81452 is not set
    < # CONFIG_MFD_STMPE is not set
    < CONFIG_MFD_SYSCON=y
    ---
    > CONFIG_MFD_PM8XXX=y
    > CONFIG_MFD_QCOM_RPM=y
    > CONFIG_MFD_SPMI_PMIC=y
    > CONFIG_MFD_RK808=y
    > CONFIG_MFD_RN5T618=y
    > CONFIG_MFD_SEC_CORE=y
    > CONFIG_MFD_STMPE=y
    3473,3476d626
    < # CONFIG_MFD_LP3943 is not set
    < # CONFIG_MFD_LP8788 is not set
    < # CONFIG_MFD_TI_LMU is not set
    < CONFIG_MFD_OMAP_USB_HOST=y
    3478,3481d627
    < # CONFIG_TPS6105X is not set
    < # CONFIG_TPS65010 is not set
    < # CONFIG_TPS6507X is not set
    < # CONFIG_MFD_TPS65086 is not set
    3484,3485d629
    < # CONFIG_MFD_TI_LP873X is not set
    < # CONFIG_MFD_TI_LP87565 is not set
    3487d630
    < # CONFIG_MFD_TPS65219 is not set
    3490,3516c633
    < # CONFIG_MFD_TPS65912_I2C is not set
    < # CONFIG_MFD_TPS65912_SPI is not set
    < # CONFIG_MFD_TPS6594_I2C is not set
    < # CONFIG_MFD_TPS6594_SPI is not set
    < CONFIG_TWL4030_CORE=y
    < CONFIG_TWL4030_POWER=y
    < # CONFIG_MFD_TWL4030_AUDIO is not set
    < # CONFIG_TWL6040_CORE is not set
    < # CONFIG_MFD_WL1273_CORE is not set
    < # CONFIG_MFD_LM3533 is not set
    < # CONFIG_MFD_TC3589X is not set
    < # CONFIG_MFD_T7L66XB is not set
    < # CONFIG_MFD_TC6387XB is not set
    < # CONFIG_MFD_TC6393XB is not set
    < # CONFIG_MFD_TQMX86 is not set
    < # CONFIG_MFD_VX855 is not set
    < # CONFIG_MFD_LOCHNAGAR is not set
    < # CONFIG_MFD_ARIZONA_I2C is not set
    < # CONFIG_MFD_ARIZONA_SPI is not set
    < # CONFIG_MFD_WM8400 is not set
    < # CONFIG_MFD_WM831X_I2C is not set
    < # CONFIG_MFD_WM831X_SPI is not set
    < # CONFIG_MFD_WM8350_I2C is not set
    < CONFIG_MFD_WM8994=m
    < # CONFIG_MFD_ROHM_BD718XX is not set
    < # CONFIG_MFD_ROHM_BD71828 is not set
    < # CONFIG_MFD_ROHM_BD957XMUF is not set
    ---
    > CONFIG_MFD_STM32_LPTIMER=m
    3518,3534c635,636
    < CONFIG_MFD_STMFX=y
    < # CONFIG_MFD_ATC260X_I2C is not set
    < # CONFIG_MFD_QCOM_PM8008 is not set
    < CONFIG_MFD_VEXPRESS_SYSREG=y
    < # CONFIG_RAVE_SP_CORE is not set
    < # CONFIG_MFD_INTEL_M10_BMC is not set
    < # CONFIG_MFD_RSMU_I2C is not set
    < # CONFIG_MFD_RSMU_SPI is not set
    < # end of Multifunction device drivers
    < 
    < CONFIG_REGULATOR=y
    < # CONFIG_REGULATOR_DEBUG is not set
    < CONFIG_REGULATOR_FIXED_VOLTAGE=y
    < # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
    < # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
    < # CONFIG_REGULATOR_88PG86X is not set
    < # CONFIG_REGULATOR_ACT8865 is not set
    ---
    > CONFIG_MFD_ACER_A500_EC=m
    > CONFIG_REGULATOR_ACT8865=y
    3536,3537c638,643
    < # CONFIG_REGULATOR_AD5398 is not set
    < # CONFIG_REGULATOR_ARM_SCMI is not set
    ---
    > CONFIG_REGULATOR_ANATOP=y
    > CONFIG_REGULATOR_AB8500=y
    > CONFIG_REGULATOR_AS3711=y
    > CONFIG_REGULATOR_AS3722=y
    > CONFIG_REGULATOR_AXP20X=y
    > CONFIG_REGULATOR_BCM590XX=y
    3539,3543c645,646
    < # CONFIG_REGULATOR_DA9121 is not set
    < # CONFIG_REGULATOR_DA9210 is not set
    < # CONFIG_REGULATOR_DA9211 is not set
    < # CONFIG_REGULATOR_FAN53555 is not set
    < # CONFIG_REGULATOR_FAN53880 is not set
    ---
    > CONFIG_REGULATOR_DA9210=y
    > CONFIG_REGULATOR_FAN53555=y
    3545,3567c648,657
    < # CONFIG_REGULATOR_ISL9305 is not set
    < # CONFIG_REGULATOR_ISL6271A is not set
    < # CONFIG_REGULATOR_LP3971 is not set
    < # CONFIG_REGULATOR_LP3972 is not set
    < # CONFIG_REGULATOR_LP872X is not set
    < # CONFIG_REGULATOR_LP8755 is not set
    < # CONFIG_REGULATOR_LTC3589 is not set
    < # CONFIG_REGULATOR_LTC3676 is not set
    < # CONFIG_REGULATOR_MAX1586 is not set
    < # CONFIG_REGULATOR_MAX8649 is not set
    < # CONFIG_REGULATOR_MAX8660 is not set
    < # CONFIG_REGULATOR_MAX8893 is not set
    < # CONFIG_REGULATOR_MAX8952 is not set
    < # CONFIG_REGULATOR_MAX8973 is not set
    < # CONFIG_REGULATOR_MAX20086 is not set
    < # CONFIG_REGULATOR_MAX77826 is not set
    < # CONFIG_REGULATOR_MCP16502 is not set
    < # CONFIG_REGULATOR_MP5416 is not set
    < # CONFIG_REGULATOR_MP8859 is not set
    < # CONFIG_REGULATOR_MP886X is not set
    < # CONFIG_REGULATOR_MPQ7920 is not set
    < # CONFIG_REGULATOR_MT6311 is not set
    < # CONFIG_REGULATOR_MT6315 is not set
    ---
    > CONFIG_REGULATOR_LP872X=y
    > CONFIG_REGULATOR_MAX14577=m
    > CONFIG_REGULATOR_MAX8907=y
    > CONFIG_REGULATOR_MAX8952=m
    > CONFIG_REGULATOR_MAX8973=y
    > CONFIG_REGULATOR_MAX8997=m
    > CONFIG_REGULATOR_MAX8998=m
    > CONFIG_REGULATOR_MAX77686=y
    > CONFIG_REGULATOR_MAX77693=m
    > CONFIG_REGULATOR_MAX77802=y
    3570,3576c660,662
    < # CONFIG_REGULATOR_PCA9450 is not set
    < # CONFIG_REGULATOR_PF8X00 is not set
    < # CONFIG_REGULATOR_PFUZE100 is not set
    < # CONFIG_REGULATOR_PV88060 is not set
    < # CONFIG_REGULATOR_PV88080 is not set
    < # CONFIG_REGULATOR_PV88090 is not set
    < # CONFIG_REGULATOR_PWM is not set
    ---
    > CONFIG_REGULATOR_PWM=y
    > CONFIG_REGULATOR_QCOM_RPM=y
    > CONFIG_REGULATOR_QCOM_SMD_RPM=y
    3578,3588c664,671
    < # CONFIG_REGULATOR_QCOM_USB_VBUS is not set
    < # CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set
    < # CONFIG_REGULATOR_RT4801 is not set
    < # CONFIG_REGULATOR_RT5190A is not set
    < # CONFIG_REGULATOR_RT5759 is not set
    < # CONFIG_REGULATOR_RT6160 is not set
    < # CONFIG_REGULATOR_RT6245 is not set
    < # CONFIG_REGULATOR_RTQ2134 is not set
    < # CONFIG_REGULATOR_RTMV20 is not set
    < # CONFIG_REGULATOR_RTQ6752 is not set
    < # CONFIG_REGULATOR_SLG51000 is not set
    ---
    > CONFIG_REGULATOR_RK808=y
    > CONFIG_REGULATOR_RN5T618=y
    > CONFIG_REGULATOR_S2MPA01=m
    > CONFIG_REGULATOR_S2MPS11=y
    > CONFIG_REGULATOR_S5M8767=y
    > CONFIG_REGULATOR_STM32_BOOSTER=m
    > CONFIG_REGULATOR_STM32_VREFBUF=m
    > CONFIG_REGULATOR_STM32_PWR=y
    3591,3594c674
    < # CONFIG_REGULATOR_SY8106A is not set
    < # CONFIG_REGULATOR_SY8824X is not set
    < # CONFIG_REGULATOR_SY8827N is not set
    < # CONFIG_REGULATOR_TPS51632 is not set
    ---
    > CONFIG_REGULATOR_TPS51632=y
    3596,3598d675
    < # CONFIG_REGULATOR_TPS6286X is not set
    < # CONFIG_REGULATOR_TPS65023 is not set
    < # CONFIG_REGULATOR_TPS6507X is not set
    3600d676
    < # CONFIG_REGULATOR_TPS65132 is not set
    3603d678
    < # CONFIG_REGULATOR_TPS6524X is not set
    3606,3607c681
    < # CONFIG_REGULATOR_TWL4030 is not set
    < # CONFIG_REGULATOR_VCTRL is not set
    ---
    > CONFIG_REGULATOR_TWL4030=y
    3610,3623c684,685
    < # CONFIG_REGULATOR_QCOM_LABIBB is not set
    < # CONFIG_RC_CORE is not set
    < CONFIG_CEC_CORE=y
    < 
    < #
    < # CEC support
    < #
    < CONFIG_MEDIA_CEC_SUPPORT=y
    < # CONFIG_CEC_CH7322 is not set
    < # CONFIG_CEC_GPIO is not set
    < # CONFIG_USB_PULSE8_CEC is not set
    < # CONFIG_USB_RAINSHADOW_CEC is not set
    < # end of CEC support
    < 
    ---
    > CONFIG_CEC_SAMSUNG_S5P=m
    > CONFIG_CEC_STM32=m
    3625,3685d686
    < # CONFIG_MEDIA_SUPPORT_FILTER is not set
    < # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
    < 
    < #
    < # Media device types
    < #
    < CONFIG_MEDIA_CAMERA_SUPPORT=y
    < CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
    < CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
    < CONFIG_MEDIA_RADIO_SUPPORT=y
    < CONFIG_MEDIA_SDR_SUPPORT=y
    < CONFIG_MEDIA_PLATFORM_SUPPORT=y
    < CONFIG_MEDIA_TEST_SUPPORT=y
    < # end of Media device types
    < 
    < #
    < # Media core support
    < #
    < CONFIG_VIDEO_DEV=m
    < CONFIG_MEDIA_CONTROLLER=y
    < CONFIG_DVB_CORE=m
    < # end of Media core support
    < 
    < #
    < # Video4Linux options
    < #
    < CONFIG_VIDEO_V4L2_I2C=y
    < CONFIG_VIDEO_V4L2_SUBDEV_API=y
    < # CONFIG_VIDEO_ADV_DEBUG is not set
    < # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
    < CONFIG_V4L2_MEM2MEM_DEV=m
    < # CONFIG_V4L2_FLASH_LED_CLASS is not set
    < CONFIG_V4L2_FWNODE=m
    < CONFIG_V4L2_ASYNC=m
    < # end of Video4Linux options
    < 
    < #
    < # Media controller options
    < #
    < # CONFIG_MEDIA_CONTROLLER_DVB is not set
    < CONFIG_MEDIA_CONTROLLER_REQUEST_API=y
    < # end of Media controller options
    < 
    < #
    < # Digital TV options
    < #
    < # CONFIG_DVB_MMAP is not set
    < CONFIG_DVB_NET=y
    < CONFIG_DVB_MAX_ADAPTERS=16
    < CONFIG_DVB_DYNAMIC_MINORS=y
    < # CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
    < # CONFIG_DVB_ULE_DEBUG is not set
    < # end of Digital TV options
    < 
    < #
    < # Media drivers
    < #
    < 
    < #
    < # Media drivers
    < #
    3687,3694d687
    < 
    < #
    < # Webcam devices
    < #
    < # CONFIG_USB_GSPCA is not set
    < # CONFIG_USB_PWC is not set
    < # CONFIG_USB_S2255 is not set
    < # CONFIG_VIDEO_USBTV is not set
    3696,3749c689,690
    < CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
    < 
    < #
    < # Analog TV USB devices
    < #
    < # CONFIG_VIDEO_GO7007 is not set
    < # CONFIG_VIDEO_HDPVR is not set
    < # CONFIG_VIDEO_PVRUSB2 is not set
    < # CONFIG_VIDEO_STK1160_COMMON is not set
    < 
    < #
    < # Analog/digital TV USB devices
    < #
    < # CONFIG_VIDEO_AU0828 is not set
    < # CONFIG_VIDEO_CX231XX is not set
    < 
    < #
    < # Digital TV USB devices
    < #
    < # CONFIG_DVB_AS102 is not set
    < # CONFIG_DVB_B2C2_FLEXCOP_USB is not set
    < # CONFIG_DVB_USB_V2 is not set
    < # CONFIG_SMS_USB_DRV is not set
    < # CONFIG_DVB_TTUSB_BUDGET is not set
    < # CONFIG_DVB_TTUSB_DEC is not set
    < 
    < #
    < # Webcam, TV (analog/digital) USB devices
    < #
    < # CONFIG_VIDEO_EM28XX is not set
    < 
    < #
    < # Software defined radio USB devices
    < #
    < # CONFIG_USB_AIRSPY is not set
    < # CONFIG_USB_HACKRF is not set
    < # CONFIG_USB_MSI2500 is not set
    < # CONFIG_MEDIA_PCI_SUPPORT is not set
    < CONFIG_RADIO_ADAPTERS=m
    < # CONFIG_RADIO_MAXIRADIO is not set
    < # CONFIG_RADIO_SAA7706H is not set
    < # CONFIG_RADIO_SHARK is not set
    < # CONFIG_RADIO_SHARK2 is not set
    < # CONFIG_RADIO_SI4713 is not set
    < # CONFIG_RADIO_TEA5764 is not set
    < # CONFIG_RADIO_TEF6862 is not set
    < # CONFIG_RADIO_WL1273 is not set
    < # CONFIG_USB_DSBR is not set
    < # CONFIG_USB_KEENE is not set
    < # CONFIG_USB_MA901 is not set
    < # CONFIG_USB_MR800 is not set
    < # CONFIG_USB_RAREMONO is not set
    < # CONFIG_RADIO_SI470X is not set
    < CONFIG_MEDIA_PLATFORM_DRIVERS=y
    ---
    > CONFIG_VIDEO_TI_VIP=m
    > CONFIG_VIDEO_TI_VPE=m
    3751,3752d691
    < # CONFIG_SDR_PLATFORM_DRIVERS is not set
    < # CONFIG_DVB_PLATFORM_DRIVERS is not set
    3754,3771d692
    < # CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set
    < # CONFIG_VIDEO_MUX is not set
    < 
    < #
    < # Allegro DVT media platform drivers
    < #
    < 
    < #
    < # Amlogic media platform drivers
    < #
    < 
    < #
    < # Amphion drivers
    < #
    < 
    < #
    < # Aspeed media platform drivers
    < #
    3773,3867c694,716
    < 
    < #
    < # Atmel media platform drivers
    < #
    < 
    < #
    < # Cadence media platform drivers
    < #
    < # CONFIG_VIDEO_CADENCE_CSI2RX is not set
    < # CONFIG_VIDEO_CADENCE_CSI2TX is not set
    < 
    < #
    < # Chips&Media media platform drivers
    < #
    < # CONFIG_VIDEO_WAVE_VPU is not set
    < 
    < #
    < # IMG media platform drivers
    < #
    < 
    < #
    < # Intel media platform drivers
    < #
    < 
    < #
    < # Marvell media platform drivers
    < #
    < # CONFIG_VIDEO_CAFE_CCIC is not set
    < 
    < #
    < # Mediatek media platform drivers
    < #
    < 
    < #
    < # NVidia media platform drivers
    < #
    < 
    < #
    < # NXP media platform drivers
    < #
    < 
    < #
    < # Qualcomm media platform drivers
    < #
    < 
    < #
    < # Renesas media platform drivers
    < #
    < 
    < #
    < # Rockchip media platform drivers
    < #
    < 
    < #
    < # Samsung media platform drivers
    < #
    < 
    < #
    < # STMicroelectronics media platform drivers
    < #
    < 
    < #
    < # Sunxi media platform drivers
    < #
    < 
    < #
    < # Texas Instruments drivers
    < #
    < CONFIG_VIDEO_TI_VPDMA=m
    < CONFIG_VIDEO_TI_SC=m
    < CONFIG_VIDEO_TI_CSC=m
    < # CONFIG_VIDEO_TI_CAL is not set
    < CONFIG_VIDEO_TI_VIP=m
    < CONFIG_VIDEO_TI_VPE=m
    < # CONFIG_VIDEO_TI_VPE_DEBUG is not set
    < # CONFIG_VIDEO_AM437X_VPFE is not set
    < # CONFIG_VIDEO_OMAP3 is not set
    < 
    < #
    < # Verisilicon media platform drivers
    < #
    < 
    < #
    < # VIA media platform drivers
    < #
    < 
    < #
    < # Xilinx media platform drivers
    < #
    < # CONFIG_VIDEO_XILINX is not set
    < 
    < #
    < # MMC/SDIO DVB adapters
    < #
    < # CONFIG_SMS_SDIO_DRV is not set
    ---
    > CONFIG_VIDEO_ATMEL_ISC=m
    > CONFIG_VIDEO_ATMEL_XISC=m
    > CONFIG_VIDEO_ATMEL_ISI=m
    > CONFIG_VIDEO_MICROCHIP_CSI2DC=m
    > CONFIG_VIDEO_MMP_CAMERA=m
    > CONFIG_VIDEO_TEGRA_VDE=m
    > CONFIG_VIDEO_RENESAS_CEU=m
    > CONFIG_VIDEO_RCAR_VIN=m
    > CONFIG_VIDEO_RENESAS_FDP1=m
    > CONFIG_VIDEO_RENESAS_JPU=m
    > CONFIG_VIDEO_RENESAS_VSP1=m
    > CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC=m
    > CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS=m
    > CONFIG_VIDEO_S5P_FIMC=m
    > CONFIG_VIDEO_S5P_MIPI_CSIS=m
    > CONFIG_VIDEO_EXYNOS_FIMC_LITE=m
    > CONFIG_VIDEO_EXYNOS4_FIMC_IS=m
    > CONFIG_VIDEO_SAMSUNG_S5P_JPEG=m
    > CONFIG_VIDEO_SAMSUNG_S5P_MFC=m
    > CONFIG_VIDEO_STI_BDISP=m
    > CONFIG_VIDEO_STI_DELTA=m
    > CONFIG_VIDEO_STI_HVA=m
    > CONFIG_VIDEO_STM32_DCMI=m
    3869,3871d717
    < # CONFIG_VIDEO_VIM2M is not set
    < # CONFIG_VIDEO_VICODEC is not set
    < # CONFIG_VIDEO_VIMC is not set
    3873,3918d718
    < # CONFIG_VIDEO_VIVID_CEC is not set
    < CONFIG_VIDEO_VIVID_MAX_DEVS=64
    < # CONFIG_DVB_TEST_DRIVERS is not set
    < CONFIG_VIDEO_V4L2_TPG=m
    < CONFIG_VIDEOBUF2_CORE=m
    < CONFIG_VIDEOBUF2_V4L2=m
    < CONFIG_VIDEOBUF2_MEMOPS=m
    < CONFIG_VIDEOBUF2_DMA_CONTIG=m
    < CONFIG_VIDEOBUF2_VMALLOC=m
    < CONFIG_VIDEOBUF2_DMA_SG=m
    < # end of Media drivers
    < 
    < #
    < # Media ancillary drivers
    < #
    < CONFIG_MEDIA_ATTACH=y
    < CONFIG_VIDEO_CAMERA_SENSOR=y
    < # CONFIG_VIDEO_AR0521 is not set
    < # CONFIG_VIDEO_HI556 is not set
    < # CONFIG_VIDEO_HI846 is not set
    < # CONFIG_VIDEO_HI847 is not set
    < # CONFIG_VIDEO_IMX208 is not set
    < # CONFIG_VIDEO_IMX214 is not set
    < # CONFIG_VIDEO_IMX219 is not set
    < # CONFIG_VIDEO_IMX258 is not set
    < # CONFIG_VIDEO_IMX274 is not set
    < # CONFIG_VIDEO_IMX290 is not set
    < # CONFIG_VIDEO_IMX319 is not set
    < # CONFIG_VIDEO_IMX334 is not set
    < # CONFIG_VIDEO_IMX335 is not set
    < # CONFIG_VIDEO_IMX355 is not set
    < # CONFIG_VIDEO_IMX390 is not set
    < # CONFIG_VIDEO_IMX412 is not set
    < # CONFIG_VIDEO_MT9M001 is not set
    < # CONFIG_VIDEO_MT9M032 is not set
    < # CONFIG_VIDEO_MT9M111 is not set
    < # CONFIG_VIDEO_MT9P031 is not set
    < # CONFIG_VIDEO_MT9T001 is not set
    < # CONFIG_VIDEO_MT9T112 is not set
    < # CONFIG_VIDEO_MT9V011 is not set
    < # CONFIG_VIDEO_MT9V032 is not set
    < # CONFIG_VIDEO_MT9V111 is not set
    < # CONFIG_VIDEO_NOON010PC30 is not set
    < # CONFIG_VIDEO_OG01A1B is not set
    < # CONFIG_VIDEO_OV02A10 is not set
    < # CONFIG_VIDEO_OV08D10 is not set
    3920,4008d719
    < # CONFIG_VIDEO_OV13858 is not set
    < # CONFIG_VIDEO_OV13B10 is not set
    < # CONFIG_VIDEO_OV2312 is not set
    < # CONFIG_VIDEO_OV2640 is not set
    < # CONFIG_VIDEO_OV2659 is not set
    < # CONFIG_VIDEO_OV2680 is not set
    < # CONFIG_VIDEO_OV2685 is not set
    < # CONFIG_VIDEO_OV5640 is not set
    < # CONFIG_VIDEO_OV5645 is not set
    < # CONFIG_VIDEO_OV5647 is not set
    < # CONFIG_VIDEO_OV5648 is not set
    < # CONFIG_VIDEO_OV5670 is not set
    < # CONFIG_VIDEO_OV5675 is not set
    < # CONFIG_VIDEO_OV5693 is not set
    < # CONFIG_VIDEO_OV5695 is not set
    < # CONFIG_VIDEO_OV6650 is not set
    < # CONFIG_VIDEO_OV7251 is not set
    < # CONFIG_VIDEO_OV7640 is not set
    < # CONFIG_VIDEO_OV7670 is not set
    < # CONFIG_VIDEO_OV772X is not set
    < # CONFIG_VIDEO_OV7740 is not set
    < # CONFIG_VIDEO_OV8856 is not set
    < # CONFIG_VIDEO_OV8865 is not set
    < # CONFIG_VIDEO_OV9282 is not set
    < # CONFIG_VIDEO_OV9640 is not set
    < # CONFIG_VIDEO_OV9650 is not set
    < # CONFIG_VIDEO_OX05B1S is not set
    < # CONFIG_VIDEO_RDACM20 is not set
    < # CONFIG_VIDEO_RDACM21 is not set
    < # CONFIG_VIDEO_RJ54N1 is not set
    < # CONFIG_VIDEO_S5C73M3 is not set
    < # CONFIG_VIDEO_S5K4ECGX is not set
    < # CONFIG_VIDEO_S5K5BAF is not set
    < # CONFIG_VIDEO_S5K6A3 is not set
    < # CONFIG_VIDEO_S5K6AA is not set
    < # CONFIG_VIDEO_SR030PC30 is not set
    < # CONFIG_VIDEO_VS6624 is not set
    < # CONFIG_VIDEO_CCS is not set
    < # CONFIG_VIDEO_ET8EK8 is not set
    < # CONFIG_VIDEO_M5MOLS is not set
    < 
    < #
    < # Lens drivers
    < #
    < # CONFIG_VIDEO_AD5820 is not set
    < # CONFIG_VIDEO_AK7375 is not set
    < # CONFIG_VIDEO_DW9714 is not set
    < # CONFIG_VIDEO_DW9768 is not set
    < # CONFIG_VIDEO_DW9807_VCM is not set
    < # end of Lens drivers
    < 
    < #
    < # Flash devices
    < #
    < # CONFIG_VIDEO_ADP1653 is not set
    < # CONFIG_VIDEO_LM3560 is not set
    < # CONFIG_VIDEO_LM3646 is not set
    < # end of Flash devices
    < 
    < #
    < # Audio decoders, processors and mixers
    < #
    < # CONFIG_VIDEO_CS3308 is not set
    < # CONFIG_VIDEO_CS5345 is not set
    < # CONFIG_VIDEO_CS53L32A is not set
    < # CONFIG_VIDEO_MSP3400 is not set
    < # CONFIG_VIDEO_SONY_BTF_MPX is not set
    < # CONFIG_VIDEO_TDA1997X is not set
    < # CONFIG_VIDEO_TDA7432 is not set
    < # CONFIG_VIDEO_TDA9840 is not set
    < # CONFIG_VIDEO_TEA6415C is not set
    < # CONFIG_VIDEO_TEA6420 is not set
    < # CONFIG_VIDEO_TLV320AIC23B is not set
    < # CONFIG_VIDEO_TVAUDIO is not set
    < # CONFIG_VIDEO_UDA1342 is not set
    < # CONFIG_VIDEO_VP27SMPX is not set
    < # CONFIG_VIDEO_WM8739 is not set
    < # CONFIG_VIDEO_WM8775 is not set
    < # end of Audio decoders, processors and mixers
    < 
    < #
    < # RDS decoders
    < #
    < # CONFIG_VIDEO_SAA6588 is not set
    < # end of RDS decoders
    < 
    < #
    < # Video decoders
    < #
    4010,4011d720
    < # CONFIG_VIDEO_ADV7183 is not set
    < # CONFIG_VIDEO_ADV748X is not set
    4014,4020d722
    < # CONFIG_VIDEO_ADV7842 is not set
    < # CONFIG_VIDEO_BT819 is not set
    < # CONFIG_VIDEO_BT856 is not set
    < # CONFIG_VIDEO_BT866 is not set
    < # CONFIG_VIDEO_ISL7998X is not set
    < # CONFIG_VIDEO_KS0127 is not set
    < # CONFIG_VIDEO_MAX9286 is not set
    4022,4314d723
    < # CONFIG_VIDEO_SAA7110 is not set
    < # CONFIG_VIDEO_SAA711X is not set
    < # CONFIG_VIDEO_TC358743 is not set
    < # CONFIG_VIDEO_TVP514X is not set
    < # CONFIG_VIDEO_TVP5150 is not set
    < # CONFIG_VIDEO_TVP7002 is not set
    < # CONFIG_VIDEO_TW2804 is not set
    < # CONFIG_VIDEO_TW9903 is not set
    < # CONFIG_VIDEO_TW9906 is not set
    < # CONFIG_VIDEO_TW9910 is not set
    < # CONFIG_VIDEO_VPX3220 is not set
    < 
    < #
    < # Video and audio decoders
    < #
    < # CONFIG_VIDEO_SAA717X is not set
    < # CONFIG_VIDEO_CX25840 is not set
    < # end of Video decoders
    < 
    < #
    < # Video encoders
    < #
    < # CONFIG_VIDEO_AD9389B is not set
    < # CONFIG_VIDEO_ADV7170 is not set
    < # CONFIG_VIDEO_ADV7175 is not set
    < # CONFIG_VIDEO_ADV7343 is not set
    < # CONFIG_VIDEO_ADV7393 is not set
    < # CONFIG_VIDEO_ADV7511 is not set
    < # CONFIG_VIDEO_AK881X is not set
    < # CONFIG_VIDEO_SAA7127 is not set
    < # CONFIG_VIDEO_SAA7185 is not set
    < # CONFIG_VIDEO_THS8200 is not set
    < # end of Video encoders
    < 
    < #
    < # Video improvement chips
    < #
    < # CONFIG_VIDEO_UPD64031A is not set
    < # CONFIG_VIDEO_UPD64083 is not set
    < # end of Video improvement chips
    < 
    < #
    < # Audio/Video compression chips
    < #
    < # CONFIG_VIDEO_SAA6752HS is not set
    < # end of Audio/Video compression chips
    < 
    < #
    < # SDR tuner chips
    < #
    < # CONFIG_SDR_MAX2175 is not set
    < # end of SDR tuner chips
    < 
    < #
    < # Miscellaneous helper chips
    < #
    < # CONFIG_VIDEO_I2C is not set
    < # CONFIG_VIDEO_M52790 is not set
    < # CONFIG_VIDEO_ST_MIPID02 is not set
    < # CONFIG_VIDEO_THS7303 is not set
    < # end of Miscellaneous helper chips
    < 
    < #
    < # Video serializers and deserializers
    < #
    < # CONFIG_VIDEO_DS90UB913 is not set
    < # CONFIG_VIDEO_DS90UB953 is not set
    < # CONFIG_VIDEO_DS90UB960 is not set
    < # end of Video serializers and deserializers
    < 
    < #
    < # Media SPI Adapters
    < #
    < CONFIG_CXD2880_SPI_DRV=m
    < # CONFIG_VIDEO_GS1662 is not set
    < # end of Media SPI Adapters
    < 
    < CONFIG_MEDIA_TUNER=m
    < 
    < #
    < # Customize TV tuners
    < #
    < CONFIG_MEDIA_TUNER_E4000=m
    < CONFIG_MEDIA_TUNER_FC0011=m
    < CONFIG_MEDIA_TUNER_FC0012=m
    < CONFIG_MEDIA_TUNER_FC0013=m
    < CONFIG_MEDIA_TUNER_FC2580=m
    < CONFIG_MEDIA_TUNER_IT913X=m
    < CONFIG_MEDIA_TUNER_M88RS6000T=m
    < CONFIG_MEDIA_TUNER_MAX2165=m
    < CONFIG_MEDIA_TUNER_MC44S803=m
    < CONFIG_MEDIA_TUNER_MSI001=m
    < CONFIG_MEDIA_TUNER_MT2060=m
    < CONFIG_MEDIA_TUNER_MT2063=m
    < CONFIG_MEDIA_TUNER_MT20XX=m
    < CONFIG_MEDIA_TUNER_MT2131=m
    < CONFIG_MEDIA_TUNER_MT2266=m
    < CONFIG_MEDIA_TUNER_MXL301RF=m
    < CONFIG_MEDIA_TUNER_MXL5005S=m
    < CONFIG_MEDIA_TUNER_MXL5007T=m
    < CONFIG_MEDIA_TUNER_QM1D1B0004=m
    < CONFIG_MEDIA_TUNER_QM1D1C0042=m
    < CONFIG_MEDIA_TUNER_QT1010=m
    < CONFIG_MEDIA_TUNER_R820T=m
    < CONFIG_MEDIA_TUNER_SI2157=m
    < CONFIG_MEDIA_TUNER_SIMPLE=m
    < CONFIG_MEDIA_TUNER_TDA18212=m
    < CONFIG_MEDIA_TUNER_TDA18218=m
    < CONFIG_MEDIA_TUNER_TDA18250=m
    < CONFIG_MEDIA_TUNER_TDA18271=m
    < CONFIG_MEDIA_TUNER_TDA827X=m
    < CONFIG_MEDIA_TUNER_TDA8290=m
    < CONFIG_MEDIA_TUNER_TDA9887=m
    < CONFIG_MEDIA_TUNER_TEA5761=m
    < CONFIG_MEDIA_TUNER_TEA5767=m
    < CONFIG_MEDIA_TUNER_TUA9001=m
    < CONFIG_MEDIA_TUNER_XC2028=m
    < CONFIG_MEDIA_TUNER_XC4000=m
    < CONFIG_MEDIA_TUNER_XC5000=m
    < # end of Customize TV tuners
    < 
    < #
    < # Customise DVB Frontends
    < #
    < 
    < #
    < # Multistandard (satellite) frontends
    < #
    < CONFIG_DVB_M88DS3103=m
    < CONFIG_DVB_MXL5XX=m
    < CONFIG_DVB_STB0899=m
    < CONFIG_DVB_STB6100=m
    < CONFIG_DVB_STV090x=m
    < CONFIG_DVB_STV0910=m
    < CONFIG_DVB_STV6110x=m
    < CONFIG_DVB_STV6111=m
    < 
    < #
    < # Multistandard (cable + terrestrial) frontends
    < #
    < CONFIG_DVB_DRXK=m
    < CONFIG_DVB_MN88472=m
    < CONFIG_DVB_MN88473=m
    < CONFIG_DVB_SI2165=m
    < CONFIG_DVB_TDA18271C2DD=m
    < 
    < #
    < # DVB-S (satellite) frontends
    < #
    < CONFIG_DVB_CX24110=m
    < CONFIG_DVB_CX24116=m
    < CONFIG_DVB_CX24117=m
    < CONFIG_DVB_CX24120=m
    < CONFIG_DVB_CX24123=m
    < CONFIG_DVB_DS3000=m
    < CONFIG_DVB_MB86A16=m
    < CONFIG_DVB_MT312=m
    < CONFIG_DVB_S5H1420=m
    < CONFIG_DVB_SI21XX=m
    < CONFIG_DVB_STB6000=m
    < CONFIG_DVB_STV0288=m
    < CONFIG_DVB_STV0299=m
    < CONFIG_DVB_STV0900=m
    < CONFIG_DVB_STV6110=m
    < CONFIG_DVB_TDA10071=m
    < CONFIG_DVB_TDA10086=m
    < CONFIG_DVB_TDA8083=m
    < CONFIG_DVB_TDA8261=m
    < CONFIG_DVB_TDA826X=m
    < CONFIG_DVB_TS2020=m
    < CONFIG_DVB_TUA6100=m
    < CONFIG_DVB_TUNER_CX24113=m
    < CONFIG_DVB_TUNER_ITD1000=m
    < CONFIG_DVB_VES1X93=m
    < CONFIG_DVB_ZL10036=m
    < CONFIG_DVB_ZL10039=m
    < 
    < #
    < # DVB-T (terrestrial) frontends
    < #
    < CONFIG_DVB_AF9013=m
    < CONFIG_DVB_CX22700=m
    < CONFIG_DVB_CX22702=m
    < CONFIG_DVB_CXD2820R=m
    < CONFIG_DVB_CXD2841ER=m
    < CONFIG_DVB_DIB3000MB=m
    < CONFIG_DVB_DIB3000MC=m
    < CONFIG_DVB_DIB7000M=m
    < CONFIG_DVB_DIB7000P=m
    < CONFIG_DVB_DIB9000=m
    < CONFIG_DVB_DRXD=m
    < CONFIG_DVB_EC100=m
    < CONFIG_DVB_L64781=m
    < CONFIG_DVB_MT352=m
    < CONFIG_DVB_NXT6000=m
    < CONFIG_DVB_RTL2830=m
    < CONFIG_DVB_RTL2832=m
    < CONFIG_DVB_RTL2832_SDR=m
    < CONFIG_DVB_S5H1432=m
    < CONFIG_DVB_SI2168=m
    < CONFIG_DVB_SP887X=m
    < CONFIG_DVB_STV0367=m
    < CONFIG_DVB_TDA10048=m
    < CONFIG_DVB_TDA1004X=m
    < CONFIG_DVB_ZD1301_DEMOD=m
    < CONFIG_DVB_ZL10353=m
    < CONFIG_DVB_CXD2880=m
    < 
    < #
    < # DVB-C (cable) frontends
    < #
    < CONFIG_DVB_STV0297=m
    < CONFIG_DVB_TDA10021=m
    < CONFIG_DVB_TDA10023=m
    < CONFIG_DVB_VES1820=m
    < 
    < #
    < # ATSC (North American/Korean Terrestrial/Cable DTV) frontends
    < #
    < CONFIG_DVB_AU8522=m
    < CONFIG_DVB_AU8522_DTV=m
    < CONFIG_DVB_AU8522_V4L=m
    < CONFIG_DVB_BCM3510=m
    < CONFIG_DVB_LG2160=m
    < CONFIG_DVB_LGDT3305=m
    < CONFIG_DVB_LGDT3306A=m
    < CONFIG_DVB_LGDT330X=m
    < CONFIG_DVB_MXL692=m
    < CONFIG_DVB_NXT200X=m
    < CONFIG_DVB_OR51132=m
    < CONFIG_DVB_OR51211=m
    < CONFIG_DVB_S5H1409=m
    < CONFIG_DVB_S5H1411=m
    < 
    < #
    < # ISDB-T (terrestrial) frontends
    < #
    < CONFIG_DVB_DIB8000=m
    < CONFIG_DVB_MB86A20S=m
    < CONFIG_DVB_S921=m
    < 
    < #
    < # ISDB-S (satellite) & ISDB-T (terrestrial) frontends
    < #
    < CONFIG_DVB_MN88443X=m
    < CONFIG_DVB_TC90522=m
    < 
    < #
    < # Digital terrestrial only tuners/PLL
    < #
    < CONFIG_DVB_PLL=m
    < CONFIG_DVB_TUNER_DIB0070=m
    < CONFIG_DVB_TUNER_DIB0090=m
    < 
    < #
    < # SEC control devices for DVB-S
    < #
    < CONFIG_DVB_A8293=m
    < CONFIG_DVB_AF9033=m
    < CONFIG_DVB_ASCOT2E=m
    < CONFIG_DVB_ATBM8830=m
    < CONFIG_DVB_HELENE=m
    < CONFIG_DVB_HORUS3A=m
    < CONFIG_DVB_ISL6405=m
    < CONFIG_DVB_ISL6421=m
    < CONFIG_DVB_ISL6423=m
    < CONFIG_DVB_IX2505V=m
    < CONFIG_DVB_LGS8GL5=m
    < CONFIG_DVB_LGS8GXX=m
    < CONFIG_DVB_LNBH25=m
    < CONFIG_DVB_LNBH29=m
    < CONFIG_DVB_LNBP21=m
    < CONFIG_DVB_LNBP22=m
    < CONFIG_DVB_M88RS2000=m
    < CONFIG_DVB_TDA665x=m
    < CONFIG_DVB_DRX39XYJ=m
    < 
    < #
    < # Common Interface (EN50221) controller drivers
    < #
    < CONFIG_DVB_CXD2099=m
    < CONFIG_DVB_SP2=m
    < # end of Customise DVB Frontends
    < 
    < #
    < # Tools to develop new frontends
    < #
    < # CONFIG_DVB_DUMMY_FE is not set
    < # end of Media ancillary drivers
    < 
    < #
    < # Graphics support
    < #
    4317,4336d725
    < CONFIG_DRM_MIPI_DSI=y
    < # CONFIG_DRM_DEBUG_MM is not set
    < CONFIG_DRM_KMS_HELPER=y
    < # CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
    < # CONFIG_DRM_DEBUG_MODESET_LOCK is not set
    < CONFIG_DRM_FBDEV_EMULATION=y
    < CONFIG_DRM_FBDEV_OVERALLOC=100
    < # CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
    < # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
    < CONFIG_DRM_DP_AUX_BUS=y
    < CONFIG_DRM_DISPLAY_HELPER=y
    < CONFIG_DRM_DISPLAY_DP_HELPER=y
    < CONFIG_DRM_DISPLAY_HDMI_HELPER=y
    < # CONFIG_DRM_DP_AUX_CHARDEV is not set
    < # CONFIG_DRM_DP_CEC is not set
    < CONFIG_DRM_GEM_DMA_HELPER=y
    < 
    < #
    < # I2C encoder or helper chips
    < #
    4340,4363c729,743
    < # CONFIG_DRM_I2C_NXP_TDA9950 is not set
    < # end of I2C encoder or helper chips
    < 
    < #
    < # ARM devices
    < #
    < # CONFIG_DRM_HDLCD is not set
    < # CONFIG_DRM_MALI_DISPLAY is not set
    < # CONFIG_DRM_KOMEDA is not set
    < # end of ARM devices
    < 
    < # CONFIG_DRM_RADEON is not set
    < # CONFIG_DRM_AMDGPU is not set
    < # CONFIG_DRM_NOUVEAU is not set
    < # CONFIG_DRM_VGEM is not set
    < # CONFIG_DRM_VKMS is not set
    < # CONFIG_DRM_EXYNOS is not set
    < # CONFIG_DRM_UDL is not set
    < # CONFIG_DRM_AST is not set
    < # CONFIG_DRM_MGAG200 is not set
    < # CONFIG_DRM_ARMADA is not set
    < # CONFIG_DRM_RCAR_DW_HDMI is not set
    < CONFIG_DRM_RCAR_USE_LVDS=y
    < CONFIG_DRM_RCAR_USE_MIPI_DSI=y
    ---
    > CONFIG_DRM_NOUVEAU=m
    > CONFIG_DRM_EXYNOS=m
    > CONFIG_DRM_EXYNOS_FIMD=y
    > CONFIG_DRM_EXYNOS_MIXER=y
    > CONFIG_DRM_EXYNOS_DPI=y
    > CONFIG_DRM_EXYNOS_DSI=y
    > CONFIG_DRM_EXYNOS_HDMI=y
    > CONFIG_DRM_ROCKCHIP=m
    > CONFIG_ROCKCHIP_ANALOGIX_DP=y
    > CONFIG_ROCKCHIP_DW_HDMI=y
    > CONFIG_ROCKCHIP_DW_MIPI_DSI=y
    > CONFIG_ROCKCHIP_INNO_HDMI=y
    > CONFIG_DRM_ATMEL_HLCDC=m
    > CONFIG_DRM_RCAR_DU=m
    > CONFIG_DRM_SUN4I=m
    4365,4371d744
    < # CONFIG_OMAP2_DSS_DEBUG is not set
    < # CONFIG_OMAP2_DSS_DEBUGFS is not set
    < CONFIG_OMAP2_DSS_DPI=y
    < CONFIG_OMAP2_DSS_VENC=y
    < CONFIG_OMAP2_DSS_HDMI_COMMON=y
    < CONFIG_OMAP4_DSS_HDMI=y
    < CONFIG_OMAP4_DSS_HDMI_CEC=y
    4373,4376d745
    < # CONFIG_OMAP2_DSS_SDI is not set
    < # CONFIG_OMAP2_DSS_DSI is not set
    < CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0
    < CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y
    4378,4393c747,751
    < # CONFIG_DRM_QXL is not set
    < # CONFIG_DRM_VIRTIO_GPU is not set
    < # CONFIG_DRM_FSL_DCU is not set
    < # CONFIG_DRM_STM is not set
    < CONFIG_DRM_PANEL=y
    < 
    < #
    < # Display Panels
    < #
    < # CONFIG_DRM_PANEL_ABT_Y030XX067A is not set
    < # CONFIG_DRM_PANEL_ARM_VERSATILE is not set
    < # CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596 is not set
    < # CONFIG_DRM_PANEL_BOE_BF060Y8M_AJ0 is not set
    < # CONFIG_DRM_PANEL_BOE_HIMAX8279D is not set
    < # CONFIG_DRM_PANEL_BOE_TV101WUM_NL6 is not set
    < # CONFIG_DRM_PANEL_DSI_CM is not set
    ---
    > CONFIG_DRM_MSM=m
    > CONFIG_DRM_FSL_DCU=m
    > CONFIG_DRM_TEGRA=y
    > CONFIG_DRM_STM=m
    > CONFIG_DRM_STM_DSI=m
    4397,4424d754
    < # CONFIG_DRM_PANEL_EBBG_FT8719 is not set
    < # CONFIG_DRM_PANEL_ELIDA_KD35T133 is not set
    < # CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02 is not set
    < # CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D is not set
    < # CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
    < # CONFIG_DRM_PANEL_ILITEK_ILI9341 is not set
    < # CONFIG_DRM_PANEL_ILITEK_ILI9881C is not set
    < # CONFIG_DRM_PANEL_INNOLUX_EJ030NA is not set
    < # CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set
    < # CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set
    < # CONFIG_DRM_PANEL_JDI_R63452 is not set
    < # CONFIG_DRM_PANEL_KHADAS_TS050 is not set
    < # CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 is not set
    < # CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W is not set
    < # CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
    < # CONFIG_DRM_PANEL_LG_LB035Q02 is not set
    < # CONFIG_DRM_PANEL_LG_LG4573 is not set
    < # CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set
    < # CONFIG_DRM_PANEL_NEWVISION_NV3052C is not set
    < # CONFIG_DRM_PANEL_NOVATEK_NT35510 is not set
    < # CONFIG_DRM_PANEL_NOVATEK_NT35560 is not set
    < # CONFIG_DRM_PANEL_NOVATEK_NT35950 is not set
    < # CONFIG_DRM_PANEL_NOVATEK_NT36672A is not set
    < # CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set
    < # CONFIG_DRM_PANEL_MANTIX_MLAF057WE51 is not set
    < # CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set
    < # CONFIG_DRM_PANEL_ORISETECH_OTM8009A is not set
    4426,4441c756,760
    < # CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 is not set
    < # CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
    < # CONFIG_DRM_PANEL_RAYDIUM_RM67191 is not set
    < # CONFIG_DRM_PANEL_RAYDIUM_RM68200 is not set
    < # CONFIG_DRM_PANEL_RONBO_RB070D30 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_DB7430 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6D27A1 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
    < # CONFIG_DRM_PANEL_SAMSUNG_SOFEF00 is not set
    < # CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
    ---
    > CONFIG_DRM_PANEL_SAMSUNG_LD9040=m
    > CONFIG_DRM_PANEL_ORISETECH_OTM8009A=m
    > CONFIG_DRM_PANEL_RAYDIUM_RM68200=m
    > CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03=m
    > CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=m
    4443,4468d761
    < # CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set
    < # CONFIG_DRM_PANEL_SHARP_LS043T1LE01 is not set
    < # CONFIG_DRM_PANEL_SHARP_LS060T1SX01 is not set
    < # CONFIG_DRM_PANEL_SITRONIX_ST7701 is not set
    < # CONFIG_DRM_PANEL_SITRONIX_ST7703 is not set
    < # CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
    < # CONFIG_DRM_PANEL_SONY_ACX565AKM is not set
    < # CONFIG_DRM_PANEL_SONY_TULIP_TRULY_NT35521 is not set
    < # CONFIG_DRM_PANEL_TDO_TL070WSH30 is not set
    < # CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set
    < # CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set
    < # CONFIG_DRM_PANEL_TPO_TPG110 is not set
    < # CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA is not set
    < # CONFIG_DRM_PANEL_VISIONOX_RM69299 is not set
    < # CONFIG_DRM_PANEL_WIDECHIPS_WS2401 is not set
    < # CONFIG_DRM_PANEL_XINPENG_XPP055C272 is not set
    < # end of Display Panels
    < 
    < CONFIG_DRM_BRIDGE=y
    < CONFIG_DRM_PANEL_BRIDGE=y
    < 
    < #
    < # Display Interface Bridges
    < #
    < # CONFIG_DRM_CHIPONE_ICN6211 is not set
    < # CONFIG_DRM_CHRONTEL_CH7033 is not set
    4470,4475d762
    < # CONFIG_DRM_ITE_IT6505 is not set
    < # CONFIG_DRM_LONTIUM_LT8912B is not set
    < # CONFIG_DRM_LONTIUM_LT9211 is not set
    < # CONFIG_DRM_LONTIUM_LT9611 is not set
    < # CONFIG_DRM_LONTIUM_LT9611UXC is not set
    < # CONFIG_DRM_ITE_IT66121 is not set
    4477,4482c764,765
    < # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
    < # CONFIG_DRM_NWL_MIPI_DSI is not set
    < # CONFIG_DRM_NXP_PTN3460 is not set
    < # CONFIG_DRM_PARADE_PS8622 is not set
    < # CONFIG_DRM_PARADE_PS8640 is not set
    < # CONFIG_DRM_SIL_SII8620 is not set
    ---
    > CONFIG_DRM_NXP_PTN3460=m
    > CONFIG_DRM_PARADE_PS8622=m
    4484c767
    < # CONFIG_DRM_SII9234 is not set
    ---
    > CONFIG_DRM_SII9234=m
    4486,4489c769
    < # CONFIG_DRM_THINE_THC63LVD1024 is not set
    < # CONFIG_DRM_TOSHIBA_TC358762 is not set
    < # CONFIG_DRM_TOSHIBA_TC358764 is not set
    < # CONFIG_DRM_TOSHIBA_TC358767 is not set
    ---
    > CONFIG_DRM_TOSHIBA_TC358764=m
    4491,4492d770
    < # CONFIG_DRM_TOSHIBA_TC358775 is not set
    < # CONFIG_DRM_TI_DLPC3433 is not set
    4494,4495d771
    < # CONFIG_DRM_TI_SN65DSI83 is not set
    < # CONFIG_DRM_TI_SN65DSI86 is not set
    4497,4510c773,775
    < # CONFIG_DRM_ANALOGIX_ANX6345 is not set
    < # CONFIG_DRM_ANALOGIX_ANX78XX is not set
    < # CONFIG_DRM_ANALOGIX_ANX7625 is not set
    < # CONFIG_DRM_I2C_ADV7511 is not set
    < # CONFIG_DRM_CDNS_DSI is not set
    < # CONFIG_DRM_CDNS_MHDP8546 is not set
    < CONFIG_DRM_DW_HDMI=m
    < # CONFIG_DRM_DW_HDMI_AHB_AUDIO is not set
    < # CONFIG_DRM_DW_HDMI_I2S_AUDIO is not set
    < # CONFIG_DRM_DW_HDMI_GP_AUDIO is not set
    < # CONFIG_DRM_DW_HDMI_CEC is not set
    < # end of Display Interface Bridges
    < 
    < # CONFIG_DRM_STI is not set
    ---
    > CONFIG_DRM_I2C_ADV7511=m
    > CONFIG_DRM_I2C_ADV7511_AUDIO=y
    > CONFIG_DRM_STI=m
    4516,4554c781,788
    < # CONFIG_DRM_ETNAVIV is not set
    < # CONFIG_DRM_LOGICVC is not set
    < # CONFIG_DRM_ARCPGU is not set
    < # CONFIG_DRM_BOCHS is not set
    < # CONFIG_DRM_CIRRUS_QEMU is not set
    < # CONFIG_DRM_GM12U320 is not set
    < # CONFIG_DRM_PANEL_MIPI_DBI is not set
    < # CONFIG_DRM_SIMPLEDRM is not set
    < # CONFIG_TINYDRM_HX8357D is not set
    < # CONFIG_TINYDRM_ILI9163 is not set
    < # CONFIG_TINYDRM_ILI9225 is not set
    < # CONFIG_TINYDRM_ILI9341 is not set
    < # CONFIG_TINYDRM_ILI9486 is not set
    < # CONFIG_TINYDRM_MI0283QT is not set
    < # CONFIG_TINYDRM_REPAPER is not set
    < # CONFIG_TINYDRM_ST7586 is not set
    < # CONFIG_TINYDRM_ST7735R is not set
    < # CONFIG_DRM_PL111 is not set
    < # CONFIG_DRM_TVE200 is not set
    < # CONFIG_DRM_LIMA is not set
    < # CONFIG_DRM_PANFROST is not set
    < # CONFIG_DRM_MCDE is not set
    < # CONFIG_DRM_TIDSS is not set
    < # CONFIG_DRM_GUD is not set
    < # CONFIG_DRM_SSD130X is not set
    < CONFIG_DRM_LEGACY=y
    < # CONFIG_DRM_TDFX is not set
    < # CONFIG_DRM_R128 is not set
    < # CONFIG_DRM_MGA is not set
    < # CONFIG_DRM_VIA is not set
    < # CONFIG_DRM_SAVAGE is not set
    < CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
    < CONFIG_DRM_NOMODESET=y
    < 
    < #
    < # Frame buffer Devices
    < #
    < CONFIG_FB_CMDLINE=y
    < CONFIG_FB_NOTIFY=y
    ---
    > CONFIG_DRM_V3D=m
    > CONFIG_DRM_VC4=m
    > CONFIG_DRM_ETNAVIV=m
    > CONFIG_DRM_MXSFB=m
    > CONFIG_DRM_PL111=m
    > CONFIG_DRM_LIMA=m
    > CONFIG_DRM_PANFROST=m
    > CONFIG_DRM_ASPEED_GFX=m
    4556,4616c790,793
    < # CONFIG_FIRMWARE_EDID is not set
    < CONFIG_FB_CFB_FILLRECT=y
    < CONFIG_FB_CFB_COPYAREA=y
    < CONFIG_FB_CFB_IMAGEBLIT=y
    < CONFIG_FB_SYS_FILLRECT=y
    < CONFIG_FB_SYS_COPYAREA=y
    < CONFIG_FB_SYS_IMAGEBLIT=y
    < # CONFIG_FB_FOREIGN_ENDIAN is not set
    < CONFIG_FB_SYS_FOPS=y
    < CONFIG_FB_DEFERRED_IO=y
    < CONFIG_FB_MODE_HELPERS=y
    < # CONFIG_FB_TILEBLITTING is not set
    < 
    < #
    < # Frame buffer hardware drivers
    < #
    < # CONFIG_FB_CIRRUS is not set
    < # CONFIG_FB_PM2 is not set
    < # CONFIG_FB_CYBER2000 is not set
    < # CONFIG_FB_ASILIANT is not set
    < # CONFIG_FB_IMSTT is not set
    < # CONFIG_FB_EFI is not set
    < # CONFIG_FB_OPENCORES is not set
    < # CONFIG_FB_S1D13XXX is not set
    < # CONFIG_FB_NVIDIA is not set
    < # CONFIG_FB_RIVA is not set
    < # CONFIG_FB_I740 is not set
    < # CONFIG_FB_MATROX is not set
    < # CONFIG_FB_RADEON is not set
    < # CONFIG_FB_ATY128 is not set
    < # CONFIG_FB_ATY is not set
    < # CONFIG_FB_S3 is not set
    < # CONFIG_FB_SAVAGE is not set
    < # CONFIG_FB_SIS is not set
    < # CONFIG_FB_NEOMAGIC is not set
    < # CONFIG_FB_KYRO is not set
    < # CONFIG_FB_3DFX is not set
    < # CONFIG_FB_VOODOO1 is not set
    < # CONFIG_FB_VT8623 is not set
    < # CONFIG_FB_TRIDENT is not set
    < # CONFIG_FB_ARK is not set
    < # CONFIG_FB_PM3 is not set
    < # CONFIG_FB_CARMINE is not set
    < # CONFIG_FB_SMSCUFX is not set
    < # CONFIG_FB_UDL is not set
    < # CONFIG_FB_IBM_GXT4500 is not set
    < # CONFIG_FB_DA8XX is not set
    < # CONFIG_FB_VIRTUAL is not set
    < # CONFIG_FB_METRONOME is not set
    < # CONFIG_FB_MB862XX is not set
    < # CONFIG_FB_SIMPLE is not set
    < # CONFIG_FB_SSD1307 is not set
    < # CONFIG_FB_SM712 is not set
    < # end of Frame buffer Devices
    < 
    < #
    < # Backlight & LCD device support
    < #
    < # CONFIG_LCD_CLASS_DEVICE is not set
    < CONFIG_BACKLIGHT_CLASS_DEVICE=y
    < # CONFIG_BACKLIGHT_KTD253 is not set
    ---
    > CONFIG_FB_EFI=y
    > CONFIG_FB_WM8505=y
    > CONFIG_FB_SH_MOBILE_LCDC=y
    > CONFIG_FB_SIMPLE=y
    4618,4625c795
    < # CONFIG_BACKLIGHT_QCOM_WLED is not set
    < # CONFIG_BACKLIGHT_ADP8860 is not set
    < # CONFIG_BACKLIGHT_ADP8870 is not set
    < # CONFIG_BACKLIGHT_LM3630A is not set
    < # CONFIG_BACKLIGHT_LM3639 is not set
    < # CONFIG_BACKLIGHT_LP855X is not set
    < # CONFIG_BACKLIGHT_PANDORA is not set
    < # CONFIG_BACKLIGHT_TPS65217 is not set
    ---
    > CONFIG_BACKLIGHT_AS3711=y
    4627,4639d796
    < # CONFIG_BACKLIGHT_LV5207LP is not set
    < # CONFIG_BACKLIGHT_BD6107 is not set
    < # CONFIG_BACKLIGHT_ARCXCNN is not set
    < # CONFIG_BACKLIGHT_LED is not set
    < # end of Backlight & LCD device support
    < 
    < CONFIG_VIDEOMODE_HELPERS=y
    < CONFIG_HDMI=y
    < 
    < #
    < # Console display driver support
    < #
    < CONFIG_DUMMY_CONSOLE=y
    4641,4649c798
    < # CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set
    < CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
    < # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
    < # CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
    < # end of Console display driver support
    < 
    < # CONFIG_LOGO is not set
    < # end of Graphics support
    < 
    ---
    > CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
    4652,4758c801,806
    < CONFIG_SND_TIMER=m
    < CONFIG_SND_PCM=m
    < CONFIG_SND_PCM_ELD=y
    < CONFIG_SND_PCM_IEC958=y
    < CONFIG_SND_DMAENGINE_PCM=m
    < CONFIG_SND_HWDEP=m
    < CONFIG_SND_RAWMIDI=m
    < CONFIG_SND_JACK=y
    < CONFIG_SND_JACK_INPUT_DEV=y
    < # CONFIG_SND_OSSEMUL is not set
    < CONFIG_SND_PCM_TIMER=y
    < # CONFIG_SND_HRTIMER is not set
    < CONFIG_SND_DYNAMIC_MINORS=y
    < CONFIG_SND_MAX_CARDS=32
    < CONFIG_SND_SUPPORT_OLD_API=y
    < CONFIG_SND_PROC_FS=y
    < CONFIG_SND_VERBOSE_PROCFS=y
    < # CONFIG_SND_VERBOSE_PRINTK is not set
    < CONFIG_SND_CTL_FAST_LOOKUP=y
    < # CONFIG_SND_DEBUG is not set
    < # CONFIG_SND_CTL_INPUT_VALIDATION is not set
    < CONFIG_SND_VMASTER=y
    < # CONFIG_SND_SEQUENCER is not set
    < CONFIG_SND_AC97_CODEC=m
    < CONFIG_SND_DRIVERS=y
    < # CONFIG_SND_DUMMY is not set
    < # CONFIG_SND_ALOOP is not set
    < # CONFIG_SND_MTPAV is not set
    < # CONFIG_SND_SERIAL_U16550 is not set
    < # CONFIG_SND_SERIAL_GENERIC is not set
    < # CONFIG_SND_MPU401 is not set
    < # CONFIG_SND_AC97_POWER_SAVE is not set
    < CONFIG_SND_PCI=y
    < # CONFIG_SND_AD1889 is not set
    < # CONFIG_SND_ALS300 is not set
    < # CONFIG_SND_ALI5451 is not set
    < # CONFIG_SND_ATIIXP is not set
    < # CONFIG_SND_ATIIXP_MODEM is not set
    < # CONFIG_SND_AU8810 is not set
    < # CONFIG_SND_AU8820 is not set
    < # CONFIG_SND_AU8830 is not set
    < # CONFIG_SND_AW2 is not set
    < # CONFIG_SND_AZT3328 is not set
    < # CONFIG_SND_BT87X is not set
    < # CONFIG_SND_CA0106 is not set
    < # CONFIG_SND_CMIPCI is not set
    < # CONFIG_SND_OXYGEN is not set
    < # CONFIG_SND_CS4281 is not set
    < # CONFIG_SND_CS46XX is not set
    < # CONFIG_SND_CTXFI is not set
    < # CONFIG_SND_DARLA20 is not set
    < # CONFIG_SND_GINA20 is not set
    < # CONFIG_SND_LAYLA20 is not set
    < # CONFIG_SND_DARLA24 is not set
    < # CONFIG_SND_GINA24 is not set
    < # CONFIG_SND_LAYLA24 is not set
    < # CONFIG_SND_MONA is not set
    < # CONFIG_SND_MIA is not set
    < # CONFIG_SND_ECHO3G is not set
    < # CONFIG_SND_INDIGO is not set
    < # CONFIG_SND_INDIGOIO is not set
    < # CONFIG_SND_INDIGODJ is not set
    < # CONFIG_SND_INDIGOIOX is not set
    < # CONFIG_SND_INDIGODJX is not set
    < # CONFIG_SND_EMU10K1 is not set
    < # CONFIG_SND_EMU10K1X is not set
    < # CONFIG_SND_ENS1370 is not set
    < # CONFIG_SND_ENS1371 is not set
    < # CONFIG_SND_ES1938 is not set
    < # CONFIG_SND_ES1968 is not set
    < # CONFIG_SND_FM801 is not set
    < # CONFIG_SND_HDSP is not set
    < # CONFIG_SND_HDSPM is not set
    < # CONFIG_SND_ICE1712 is not set
    < # CONFIG_SND_ICE1724 is not set
    < # CONFIG_SND_INTEL8X0 is not set
    < # CONFIG_SND_INTEL8X0M is not set
    < # CONFIG_SND_KORG1212 is not set
    < # CONFIG_SND_LOLA is not set
    < # CONFIG_SND_LX6464ES is not set
    < # CONFIG_SND_MAESTRO3 is not set
    < # CONFIG_SND_MIXART is not set
    < # CONFIG_SND_NM256 is not set
    < # CONFIG_SND_PCXHR is not set
    < # CONFIG_SND_RIPTIDE is not set
    < # CONFIG_SND_RME32 is not set
    < # CONFIG_SND_RME96 is not set
    < # CONFIG_SND_RME9652 is not set
    < # CONFIG_SND_SE6X is not set
    < # CONFIG_SND_SONICVIBES is not set
    < # CONFIG_SND_TRIDENT is not set
    < # CONFIG_SND_VIA82XX is not set
    < # CONFIG_SND_VIA82XX_MODEM is not set
    < # CONFIG_SND_VIRTUOSO is not set
    < # CONFIG_SND_VX222 is not set
    < # CONFIG_SND_YMFPCI is not set
    < 
    < #
    < # HD-Audio
    < #
    < # CONFIG_SND_HDA_INTEL is not set
    < # end of HD-Audio
    < 
    < CONFIG_SND_HDA_PREALLOC_SIZE=64
    < # CONFIG_SND_ARM is not set
    < # CONFIG_SND_SPI is not set
    < CONFIG_SND_USB=y
    ---
    > CONFIG_SND_SOC_OMAP_HDMI=m
    > CONFIG_SND_HDA_TEGRA=m
    > CONFIG_SND_HDA_INPUT_BEEP=y
    > CONFIG_SND_HDA_PATCH_LOADER=y
    > CONFIG_SND_HDA_CODEC_REALTEK=m
    > CONFIG_SND_HDA_CODEC_HDMI=m
    4760,4769d807
    < CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y
    < # CONFIG_SND_USB_UA101 is not set
    < # CONFIG_SND_USB_CAIAQ is not set
    < # CONFIG_SND_USB_6FIRE is not set
    < # CONFIG_SND_USB_HIFACE is not set
    < # CONFIG_SND_BCD2000 is not set
    < # CONFIG_SND_USB_POD is not set
    < # CONFIG_SND_USB_PODHD is not set
    < # CONFIG_SND_USB_TONEPORT is not set
    < # CONFIG_SND_USB_VARIAX is not set
    4771,4818c809,850
    < CONFIG_SND_SOC_AC97_BUS=y
    < CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
    < # CONFIG_SND_SOC_ADI is not set
    < # CONFIG_SND_SOC_AMD_ACP is not set
    < # CONFIG_SND_AMD_ACP_CONFIG is not set
    < # CONFIG_SND_ATMEL_SOC is not set
    < # CONFIG_SND_BCM63XX_I2S_WHISTLER is not set
    < # CONFIG_SND_DESIGNWARE_I2S is not set
    < 
    < #
    < # SoC Audio for Freescale CPUs
    < #
    < 
    < #
    < # Common SoC Audio options for Freescale CPUs:
    < #
    < # CONFIG_SND_SOC_FSL_ASRC is not set
    < # CONFIG_SND_SOC_FSL_SAI is not set
    < # CONFIG_SND_SOC_FSL_AUDMIX is not set
    < CONFIG_SND_SOC_FSL_SSI=m
    < # CONFIG_SND_SOC_FSL_SPDIF is not set
    < CONFIG_SND_SOC_FSL_ESAI=m
    < # CONFIG_SND_SOC_FSL_MICFIL is not set
    < # CONFIG_SND_SOC_FSL_XCVR is not set
    < # CONFIG_SND_SOC_FSL_RPMSG is not set
    < CONFIG_SND_SOC_IMX_AUDMUX=m
    < # end of SoC Audio for Freescale CPUs
    < 
    < # CONFIG_SND_I2S_HI6210_I2S is not set
    < # CONFIG_SND_SOC_IMG is not set
    < # CONFIG_SND_SOC_MTK_BTCVSD is not set
    < # CONFIG_SND_SOC_SOF_TOPLEVEL is not set
    < 
    < #
    < # STMicroelectronics STM32 SOC audio support
    < #
    < # end of STMicroelectronics STM32 SOC audio support
    < 
    < #
    < # Audio support for Texas Instruments SoCs
    < #
    < CONFIG_SND_SOC_TI_EDMA_PCM=m
    < CONFIG_SND_SOC_TI_SDMA_PCM=m
    < CONFIG_SND_SOC_TI_UDMA_PCM=m
    < 
    < #
    < # Texas Instruments DAI support for:
    < #
    ---
    > CONFIG_SND_ATMEL_SOC=m
    > CONFIG_SND_ATMEL_SOC_WM8904=m
    > CONFIG_SND_ATMEL_SOC_PDMIC=m
    > CONFIG_SND_ATMEL_SOC_I2S=m
    > CONFIG_SND_BCM2835_SOC_I2S=m
    > CONFIG_SND_IMX_SOC=m
    > CONFIG_SND_SOC_FSL_ASOC_CARD=m
    > CONFIG_SND_PXA_SOC_SSP=m
    > CONFIG_SND_MMP_SOC_SSPA=m
    > CONFIG_SND_PXA910_SOC=m
    > CONFIG_SND_SOC_QCOM=m
    > CONFIG_SND_SOC_APQ8016_SBC=m
    > CONFIG_SND_SOC_ROCKCHIP=m
    > CONFIG_SND_SOC_ROCKCHIP_SPDIF=m
    > CONFIG_SND_SOC_ROCKCHIP_MAX98090=m
    > CONFIG_SND_SOC_ROCKCHIP_RT5645=m
    > CONFIG_SND_SOC_SAMSUNG=m
    > CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994=m
    > CONFIG_SND_SOC_SMDK_WM8994_PCM=m
    > CONFIG_SND_SOC_SNOW=m
    > CONFIG_SND_SOC_ODROID=m
    > CONFIG_SND_SOC_ARNDALE=m
    > CONFIG_SND_SOC_SAMSUNG_MIDAS_WM1811=m
    > CONFIG_SND_SOC_SH4_FSI=m
    > CONFIG_SND_SOC_RCAR=m
    > CONFIG_SND_SOC_STI=m
    > CONFIG_SND_SOC_STM32_SAI=m
    > CONFIG_SND_SOC_STM32_I2S=m
    > CONFIG_SND_SOC_STM32_SPDIFRX=m
    > CONFIG_SND_SOC_STM32_DFSDM=m
    > CONFIG_SND_SUN4I_CODEC=m
    > CONFIG_SND_SOC_TEGRA=m
    > CONFIG_SND_SOC_TEGRA20_I2S=m
    > CONFIG_SND_SOC_TEGRA20_SPDIF=m
    > CONFIG_SND_SOC_TEGRA30_I2S=m
    > CONFIG_SND_SOC_TEGRA_RT5640=m
    > CONFIG_SND_SOC_TEGRA_WM8753=m
    > CONFIG_SND_SOC_TEGRA_WM8903=m
    > CONFIG_SND_SOC_TEGRA_WM9712=m
    > CONFIG_SND_SOC_TEGRA_TRIMSLICE=m
    > CONFIG_SND_SOC_TEGRA_ALC5632=m
    > CONFIG_SND_SOC_TEGRA_MAX98090=m
    4820,4841d851
    < # CONFIG_SND_SOC_OMAP_DMIC is not set
    < # CONFIG_SND_SOC_OMAP_MCBSP is not set
    < # CONFIG_SND_SOC_OMAP_MCPDM is not set
    < 
    < #
    < # Audio support for boards with Texas Instruments SoCs
    < #
    < # CONFIG_SND_SOC_NOKIA_RX51 is not set
    < # CONFIG_SND_SOC_OMAP3_PANDORA is not set
    < # CONFIG_SND_SOC_OMAP3_TWL4030 is not set
    < CONFIG_SND_SOC_OMAP_HDMI=m
    < # end of Audio support for Texas Instruments SoCs
    < 
    < # CONFIG_SND_SOC_XILINX_I2S is not set
    < # CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
    < # CONFIG_SND_SOC_XILINX_SPDIF is not set
    < # CONFIG_SND_SOC_XTFPGA_I2S is not set
    < CONFIG_SND_SOC_I2C_AND_SPI=m
    < 
    < #
    < # CODEC drivers
    < #
    4843,4875c853,854
    < # CONFIG_SND_SOC_ADAU1372_I2C is not set
    < # CONFIG_SND_SOC_ADAU1372_SPI is not set
    < # CONFIG_SND_SOC_ADAU1701 is not set
    < # CONFIG_SND_SOC_ADAU1761_I2C is not set
    < # CONFIG_SND_SOC_ADAU1761_SPI is not set
    < # CONFIG_SND_SOC_ADAU7002 is not set
    < # CONFIG_SND_SOC_ADAU7118_HW is not set
    < # CONFIG_SND_SOC_ADAU7118_I2C is not set
    < # CONFIG_SND_SOC_AK4104 is not set
    < # CONFIG_SND_SOC_AK4118 is not set
    < # CONFIG_SND_SOC_AK4375 is not set
    < # CONFIG_SND_SOC_AK4458 is not set
    < # CONFIG_SND_SOC_AK4554 is not set
    < # CONFIG_SND_SOC_AK4613 is not set
    < # CONFIG_SND_SOC_AK4642 is not set
    < # CONFIG_SND_SOC_AK5386 is not set
    < # CONFIG_SND_SOC_AK5558 is not set
    < # CONFIG_SND_SOC_ALC5623 is not set
    < # CONFIG_SND_SOC_AW8738 is not set
    < # CONFIG_SND_SOC_BD28623 is not set
    < # CONFIG_SND_SOC_BT_SCO is not set
    < # CONFIG_SND_SOC_CPCAP is not set
    < # CONFIG_SND_SOC_CS35L32 is not set
    < # CONFIG_SND_SOC_CS35L33 is not set
    < # CONFIG_SND_SOC_CS35L34 is not set
    < # CONFIG_SND_SOC_CS35L35 is not set
    < # CONFIG_SND_SOC_CS35L36 is not set
    < # CONFIG_SND_SOC_CS35L41_SPI is not set
    < # CONFIG_SND_SOC_CS35L41_I2C is not set
    < # CONFIG_SND_SOC_CS35L45_SPI is not set
    < # CONFIG_SND_SOC_CS35L45_I2C is not set
    < # CONFIG_SND_SOC_CS42L42 is not set
    < CONFIG_SND_SOC_CS42L51=m
    ---
    > CONFIG_SND_SOC_AK4642=m
    > CONFIG_SND_SOC_CPCAP=m
    4877,4914d855
    < # CONFIG_SND_SOC_CS42L52 is not set
    < # CONFIG_SND_SOC_CS42L56 is not set
    < # CONFIG_SND_SOC_CS42L73 is not set
    < # CONFIG_SND_SOC_CS42L83 is not set
    < # CONFIG_SND_SOC_CS4234 is not set
    < # CONFIG_SND_SOC_CS4265 is not set
    < # CONFIG_SND_SOC_CS4270 is not set
    < # CONFIG_SND_SOC_CS4271_I2C is not set
    < # CONFIG_SND_SOC_CS4271_SPI is not set
    < # CONFIG_SND_SOC_CS42XX8_I2C is not set
    < # CONFIG_SND_SOC_CS43130 is not set
    < # CONFIG_SND_SOC_CS4341 is not set
    < # CONFIG_SND_SOC_CS4349 is not set
    < # CONFIG_SND_SOC_CS53L30 is not set
    < # CONFIG_SND_SOC_CX2072X is not set
    < # CONFIG_SND_SOC_DA7213 is not set
    < CONFIG_SND_SOC_DMIC=m
    < CONFIG_SND_SOC_HDMI_CODEC=m
    < # CONFIG_SND_SOC_ES7134 is not set
    < # CONFIG_SND_SOC_ES7241 is not set
    < # CONFIG_SND_SOC_ES8316 is not set
    < # CONFIG_SND_SOC_ES8326 is not set
    < # CONFIG_SND_SOC_ES8328_I2C is not set
    < # CONFIG_SND_SOC_ES8328_SPI is not set
    < # CONFIG_SND_SOC_GTM601 is not set
    < # CONFIG_SND_SOC_HDA is not set
    < # CONFIG_SND_SOC_ICS43432 is not set
    < # CONFIG_SND_SOC_INNO_RK3036 is not set
    < # CONFIG_SND_SOC_MAX98088 is not set
    < # CONFIG_SND_SOC_MAX98357A is not set
    < # CONFIG_SND_SOC_MAX98504 is not set
    < # CONFIG_SND_SOC_MAX9867 is not set
    < # CONFIG_SND_SOC_MAX98927 is not set
    < # CONFIG_SND_SOC_MAX98520 is not set
    < # CONFIG_SND_SOC_MAX98373_I2C is not set
    < # CONFIG_SND_SOC_MAX98390 is not set
    < # CONFIG_SND_SOC_MAX98396 is not set
    < # CONFIG_SND_SOC_MAX9860 is not set
    4917,4970c858,859
    < # CONFIG_SND_SOC_PCM1681 is not set
    < # CONFIG_SND_SOC_PCM1789_I2C is not set
    < # CONFIG_SND_SOC_PCM179X_I2C is not set
    < # CONFIG_SND_SOC_PCM179X_SPI is not set
    < # CONFIG_SND_SOC_PCM186X_I2C is not set
    < # CONFIG_SND_SOC_PCM186X_SPI is not set
    < # CONFIG_SND_SOC_PCM3060_I2C is not set
    < # CONFIG_SND_SOC_PCM3060_SPI is not set
    < # CONFIG_SND_SOC_PCM3168A_I2C is not set
    < # CONFIG_SND_SOC_PCM3168A_SPI is not set
    < # CONFIG_SND_SOC_PCM5102A is not set
    < # CONFIG_SND_SOC_PCM512x_I2C is not set
    < # CONFIG_SND_SOC_PCM512x_SPI is not set
    < # CONFIG_SND_SOC_RK3328 is not set
    < CONFIG_SND_SOC_RL6231=m
    < # CONFIG_SND_SOC_RT5616 is not set
    < CONFIG_SND_SOC_RT5631=m
    < CONFIG_SND_SOC_RT5640=m
    < # CONFIG_SND_SOC_RT5659 is not set
    < # CONFIG_SND_SOC_RT9120 is not set
    < # CONFIG_SND_SOC_SGTL5000 is not set
    < # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set
    < # CONFIG_SND_SOC_SIMPLE_MUX is not set
    < CONFIG_SND_SOC_SPDIF=m
    < # CONFIG_SND_SOC_SRC4XXX_I2C is not set
    < # CONFIG_SND_SOC_SSM2305 is not set
    < # CONFIG_SND_SOC_SSM2518 is not set
    < # CONFIG_SND_SOC_SSM2602_SPI is not set
    < # CONFIG_SND_SOC_SSM2602_I2C is not set
    < # CONFIG_SND_SOC_SSM4567 is not set
    < # CONFIG_SND_SOC_STA32X is not set
    < # CONFIG_SND_SOC_STA350 is not set
    < # CONFIG_SND_SOC_STI_SAS is not set
    < # CONFIG_SND_SOC_TAS2552 is not set
    < # CONFIG_SND_SOC_TAS2562 is not set
    < # CONFIG_SND_SOC_TAS2764 is not set
    < # CONFIG_SND_SOC_TAS2770 is not set
    < # CONFIG_SND_SOC_TAS2780 is not set
    < # CONFIG_SND_SOC_TAS5086 is not set
    < # CONFIG_SND_SOC_TAS571X is not set
    < # CONFIG_SND_SOC_TAS5720 is not set
    < # CONFIG_SND_SOC_TAS5805M is not set
    < # CONFIG_SND_SOC_TAS6424 is not set
    < # CONFIG_SND_SOC_TDA7419 is not set
    < # CONFIG_SND_SOC_TFA9879 is not set
    < # CONFIG_SND_SOC_TFA989X is not set
    < # CONFIG_SND_SOC_TLV320ADC3XXX is not set
    < CONFIG_SND_SOC_TLV320AIC23=m
    < CONFIG_SND_SOC_TLV320AIC23_I2C=m
    < # CONFIG_SND_SOC_TLV320AIC23_SPI is not set
    < CONFIG_SND_SOC_TLV320AIC31XX=m
    < # CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
    < # CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
    < CONFIG_SND_SOC_TLV320AIC3X=m
    ---
    > CONFIG_SND_SOC_SGTL5000=m
    > CONFIG_SND_SOC_STI_SAS=m
    4972,5022c861
    < # CONFIG_SND_SOC_TLV320AIC3X_SPI is not set
    < # CONFIG_SND_SOC_TLV320ADCX140 is not set
    < CONFIG_SND_SOC_TS3A227E=m
    < # CONFIG_SND_SOC_TSCS42XX is not set
    < # CONFIG_SND_SOC_TSCS454 is not set
    < # CONFIG_SND_SOC_UDA1334 is not set
    < # CONFIG_SND_SOC_WM8510 is not set
    < # CONFIG_SND_SOC_WM8523 is not set
    < # CONFIG_SND_SOC_WM8524 is not set
    < # CONFIG_SND_SOC_WM8580 is not set
    < # CONFIG_SND_SOC_WM8711 is not set
    < # CONFIG_SND_SOC_WM8728 is not set
    < # CONFIG_SND_SOC_WM8731_I2C is not set
    < # CONFIG_SND_SOC_WM8731_SPI is not set
    < # CONFIG_SND_SOC_WM8737 is not set
    < # CONFIG_SND_SOC_WM8741 is not set
    < # CONFIG_SND_SOC_WM8750 is not set
    < CONFIG_SND_SOC_WM8753=m
    < # CONFIG_SND_SOC_WM8770 is not set
    < # CONFIG_SND_SOC_WM8776 is not set
    < # CONFIG_SND_SOC_WM8782 is not set
    < # CONFIG_SND_SOC_WM8804_I2C is not set
    < # CONFIG_SND_SOC_WM8804_SPI is not set
    < CONFIG_SND_SOC_WM8903=m
    < CONFIG_SND_SOC_WM8904=m
    < # CONFIG_SND_SOC_WM8940 is not set
    < # CONFIG_SND_SOC_WM8960 is not set
    < # CONFIG_SND_SOC_WM8962 is not set
    < # CONFIG_SND_SOC_WM8974 is not set
    < # CONFIG_SND_SOC_WM8978 is not set
    < # CONFIG_SND_SOC_WM8985 is not set
    < # CONFIG_SND_SOC_ZL38060 is not set
    < # CONFIG_SND_SOC_MAX9759 is not set
    < # CONFIG_SND_SOC_MT6351 is not set
    < # CONFIG_SND_SOC_MT6358 is not set
    < # CONFIG_SND_SOC_MT6660 is not set
    < # CONFIG_SND_SOC_NAU8315 is not set
    < # CONFIG_SND_SOC_NAU8540 is not set
    < # CONFIG_SND_SOC_NAU8810 is not set
    < # CONFIG_SND_SOC_NAU8821 is not set
    < # CONFIG_SND_SOC_NAU8822 is not set
    < # CONFIG_SND_SOC_NAU8824 is not set
    < # CONFIG_SND_SOC_TPA6130A2 is not set
    < # CONFIG_SND_SOC_LPASS_WSA_MACRO is not set
    < # CONFIG_SND_SOC_LPASS_VA_MACRO is not set
    < # CONFIG_SND_SOC_LPASS_RX_MACRO is not set
    < # CONFIG_SND_SOC_LPASS_TX_MACRO is not set
    < # end of CODEC drivers
    < 
    < CONFIG_SND_SIMPLE_CARD_UTILS=m
    < CONFIG_SND_SIMPLE_CARD=m
    ---
    > CONFIG_SND_SOC_WM8978=m
    5024,5164d862
    < # CONFIG_SND_AUDIO_GRAPH_CARD2 is not set
    < # CONFIG_SND_TEST_COMPONENT is not set
    < # CONFIG_SND_VIRTIO is not set
    < CONFIG_AC97_BUS=m
    < 
    < #
    < # HID support
    < #
    < CONFIG_HID=y
    < # CONFIG_HID_BATTERY_STRENGTH is not set
    < # CONFIG_HIDRAW is not set
    < # CONFIG_UHID is not set
    < CONFIG_HID_GENERIC=y
    < 
    < #
    < # Special HID drivers
    < #
    < # CONFIG_HID_A4TECH is not set
    < # CONFIG_HID_ACCUTOUCH is not set
    < # CONFIG_HID_ACRUX is not set
    < # CONFIG_HID_APPLE is not set
    < # CONFIG_HID_APPLEIR is not set
    < # CONFIG_HID_ASUS is not set
    < # CONFIG_HID_AUREAL is not set
    < # CONFIG_HID_BELKIN is not set
    < # CONFIG_HID_BETOP_FF is not set
    < # CONFIG_HID_BIGBEN_FF is not set
    < # CONFIG_HID_CHERRY is not set
    < # CONFIG_HID_CHICONY is not set
    < # CONFIG_HID_CORSAIR is not set
    < # CONFIG_HID_COUGAR is not set
    < # CONFIG_HID_MACALLY is not set
    < # CONFIG_HID_PRODIKEYS is not set
    < # CONFIG_HID_CMEDIA is not set
    < # CONFIG_HID_CREATIVE_SB0540 is not set
    < # CONFIG_HID_CYPRESS is not set
    < # CONFIG_HID_DRAGONRISE is not set
    < # CONFIG_HID_EMS_FF is not set
    < # CONFIG_HID_ELAN is not set
    < # CONFIG_HID_ELECOM is not set
    < # CONFIG_HID_ELO is not set
    < # CONFIG_HID_EZKEY is not set
    < # CONFIG_HID_GEMBIRD is not set
    < # CONFIG_HID_GFRM is not set
    < # CONFIG_HID_GLORIOUS is not set
    < # CONFIG_HID_HOLTEK is not set
    < # CONFIG_HID_VIVALDI is not set
    < # CONFIG_HID_GT683R is not set
    < # CONFIG_HID_KEYTOUCH is not set
    < # CONFIG_HID_KYE is not set
    < # CONFIG_HID_UCLOGIC is not set
    < # CONFIG_HID_WALTOP is not set
    < # CONFIG_HID_VIEWSONIC is not set
    < # CONFIG_HID_VRC2 is not set
    < # CONFIG_HID_XIAOMI is not set
    < # CONFIG_HID_GYRATION is not set
    < # CONFIG_HID_ICADE is not set
    < # CONFIG_HID_ITE is not set
    < # CONFIG_HID_JABRA is not set
    < # CONFIG_HID_TWINHAN is not set
    < # CONFIG_HID_KENSINGTON is not set
    < # CONFIG_HID_LCPOWER is not set
    < # CONFIG_HID_LED is not set
    < # CONFIG_HID_LENOVO is not set
    < # CONFIG_HID_LETSKETCH is not set
    < # CONFIG_HID_LOGITECH is not set
    < # CONFIG_HID_MAGICMOUSE is not set
    < # CONFIG_HID_MALTRON is not set
    < # CONFIG_HID_MAYFLASH is not set
    < # CONFIG_HID_MEGAWORLD_FF is not set
    < # CONFIG_HID_REDRAGON is not set
    < # CONFIG_HID_MICROSOFT is not set
    < # CONFIG_HID_MONTEREY is not set
    < # CONFIG_HID_MULTITOUCH is not set
    < # CONFIG_HID_NINTENDO is not set
    < # CONFIG_HID_NTI is not set
    < # CONFIG_HID_NTRIG is not set
    < # CONFIG_HID_ORTEK is not set
    < # CONFIG_HID_PANTHERLORD is not set
    < # CONFIG_HID_PENMOUNT is not set
    < # CONFIG_HID_PETALYNX is not set
    < # CONFIG_HID_PICOLCD is not set
    < # CONFIG_HID_PLANTRONICS is not set
    < # CONFIG_HID_PXRC is not set
    < # CONFIG_HID_RAZER is not set
    < # CONFIG_HID_PRIMAX is not set
    < # CONFIG_HID_RETRODE is not set
    < # CONFIG_HID_ROCCAT is not set
    < # CONFIG_HID_SAITEK is not set
    < # CONFIG_HID_SAMSUNG is not set
    < # CONFIG_HID_SEMITEK is not set
    < # CONFIG_HID_SIGMAMICRO is not set
    < # CONFIG_HID_SONY is not set
    < # CONFIG_HID_SPEEDLINK is not set
    < # CONFIG_HID_STEAM is not set
    < # CONFIG_HID_STEELSERIES is not set
    < # CONFIG_HID_SUNPLUS is not set
    < # CONFIG_HID_RMI is not set
    < # CONFIG_HID_GREENASIA is not set
    < # CONFIG_HID_SMARTJOYPLUS is not set
    < # CONFIG_HID_TIVO is not set
    < # CONFIG_HID_TOPSEED is not set
    < # CONFIG_HID_TOPRE is not set
    < # CONFIG_HID_THINGM is not set
    < # CONFIG_HID_THRUSTMASTER is not set
    < # CONFIG_HID_UDRAW_PS3 is not set
    < # CONFIG_HID_U2FZERO is not set
    < # CONFIG_HID_WACOM is not set
    < # CONFIG_HID_WIIMOTE is not set
    < # CONFIG_HID_XINMO is not set
    < # CONFIG_HID_ZEROPLUS is not set
    < # CONFIG_HID_ZYDACRON is not set
    < # CONFIG_HID_SENSOR_HUB is not set
    < # CONFIG_HID_ALPS is not set
    < # CONFIG_HID_MCP2221 is not set
    < # end of Special HID drivers
    < 
    < #
    < # USB HID support
    < #
    < CONFIG_USB_HID=y
    < # CONFIG_HID_PID is not set
    < # CONFIG_USB_HIDDEV is not set
    < # end of USB HID support
    < 
    < #
    < # I2C HID support
    < #
    < # CONFIG_I2C_HID_OF is not set
    < # CONFIG_I2C_HID_OF_ELAN is not set
    < # CONFIG_I2C_HID_OF_GOODIX is not set
    < # end of I2C HID support
    < # end of HID support
    < 
    < CONFIG_USB_OHCI_LITTLE_ENDIAN=y
    < CONFIG_USB_SUPPORT=y
    < CONFIG_USB_COMMON=y
    < # CONFIG_USB_LED_TRIG is not set
    < CONFIG_USB_ULPI_BUS=y
    < CONFIG_USB_CONN_GPIO=y
    < CONFIG_USB_ARCH_HAS_HCD=y
    5166,5174d863
    < CONFIG_USB_PCI=y
    < # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
    < 
    < #
    < # Miscellaneous USB options
    < #
    < CONFIG_USB_DEFAULT_PERSIST=y
    < # CONFIG_USB_FEW_INIT_RETRIES is not set
    < # CONFIG_USB_DYNAMIC_MINORS is not set
    5176,5186d864
    < # CONFIG_USB_OTG_PRODUCTLIST is not set
    < # CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set
    < # CONFIG_USB_OTG_FSM is not set
    < # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
    < CONFIG_USB_AUTOSUSPEND_DELAY=2
    < # CONFIG_USB_MON is not set
    < 
    < #
    < # USB Host Controller Drivers
    < #
    < # CONFIG_USB_C67X00_HCD is not set
    5188,5191c866,868
    < # CONFIG_USB_XHCI_DBGCAP is not set
    < CONFIG_USB_XHCI_PCI=y
    < # CONFIG_USB_XHCI_PCI_RENESAS is not set
    < CONFIG_USB_XHCI_PLATFORM=y
    ---
    > CONFIG_USB_XHCI_MVEBU=y
    > CONFIG_USB_XHCI_TEGRA=m
    > CONFIG_USB_BRCMSTB=m
    5193,5202c870,872
    < CONFIG_USB_EHCI_ROOT_HUB_TT=y
    < CONFIG_USB_EHCI_TT_NEWSCHED=y
    < CONFIG_USB_EHCI_PCI=y
    < # CONFIG_USB_EHCI_FSL is not set
    < CONFIG_USB_EHCI_HCD_OMAP=y
    < CONFIG_USB_EHCI_HCD_PLATFORM=y
    < # CONFIG_USB_OXU210HP_HCD is not set
    < # CONFIG_USB_ISP116X_HCD is not set
    < # CONFIG_USB_FOTG210_HCD is not set
    < # CONFIG_USB_MAX3421_HCD is not set
    ---
    > CONFIG_USB_EHCI_HCD_STI=y
    > CONFIG_USB_EHCI_EXYNOS=m
    > CONFIG_USB_EHCI_MV=m
    5204,5208c874,875
    < CONFIG_USB_OHCI_HCD_OMAP3=y
    < CONFIG_USB_OHCI_HCD_PCI=y
    < CONFIG_USB_OHCI_HCD_PLATFORM=y
    < # CONFIG_USB_UHCI_HCD is not set
    < # CONFIG_USB_SL811_HCD is not set
    ---
    > CONFIG_USB_OHCI_HCD_STI=y
    > CONFIG_USB_OHCI_EXYNOS=m
    5210,5227c877
    < # CONFIG_USB_HCD_BCMA is not set
    < # CONFIG_USB_HCD_TEST_MODE is not set
    < 
    < #
    < # USB Device Class drivers
    < #
    < # CONFIG_USB_ACM is not set
    < # CONFIG_USB_PRINTER is not set
    < # CONFIG_USB_WDM is not set
    < # CONFIG_USB_TMC is not set
    < 
    < #
    < # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    < #
    < 
    < #
    < # also be needed; see USB_STORAGE Help for more info
    < #
    ---
    > CONFIG_USB_RENESAS_USBHS=m
    5229,5242d878
    < # CONFIG_USB_STORAGE_DEBUG is not set
    < # CONFIG_USB_STORAGE_REALTEK is not set
    < # CONFIG_USB_STORAGE_DATAFAB is not set
    < # CONFIG_USB_STORAGE_FREECOM is not set
    < # CONFIG_USB_STORAGE_ISD200 is not set
    < # CONFIG_USB_STORAGE_USBAT is not set
    < # CONFIG_USB_STORAGE_SDDR09 is not set
    < # CONFIG_USB_STORAGE_SDDR55 is not set
    < # CONFIG_USB_STORAGE_JUMPSHOT is not set
    < # CONFIG_USB_STORAGE_ALAUDA is not set
    < # CONFIG_USB_STORAGE_ONETOUCH is not set
    < # CONFIG_USB_STORAGE_KARMA is not set
    < # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
    < # CONFIG_USB_STORAGE_ENE_UB6250 is not set
    5244,5251d879
    < 
    < #
    < # USB Imaging devices
    < #
    < # CONFIG_USB_MDC800 is not set
    < # CONFIG_USB_MICROTEK is not set
    < # CONFIG_USBIP_CORE is not set
    < # CONFIG_USB_CDNS_SUPPORT is not set
    5253,5259c881
    < # CONFIG_USB_MUSB_HOST is not set
    < # CONFIG_USB_MUSB_GADGET is not set
    < CONFIG_USB_MUSB_DUAL_ROLE=y
    < 
    < #
    < # Platform Glue Layer
    < #
    ---
    > CONFIG_USB_MUSB_SUNXI=m
    5264,5268c886,887
    < 
    < #
    < # MUSB DMA mode
    < #
    < # CONFIG_MUSB_PIO_ONLY is not set
    ---
    > CONFIG_USB_MUSB_UX500=m
    > CONFIG_USB_UX500_DMA=y
    5273,5275d891
    < # CONFIG_USB_DWC3_ULPI is not set
    < # CONFIG_USB_DWC3_HOST is not set
    < # CONFIG_USB_DWC3_GADGET is not set
    5277,5318c893,897
    < 
    < #
    < # Platform Glue Driver Support
    < #
    < CONFIG_USB_DWC3_OMAP=m
    < CONFIG_USB_DWC3_HAPS=m
    < CONFIG_USB_DWC3_KEYSTONE=m
    < CONFIG_USB_DWC3_OF_SIMPLE=m
    < # CONFIG_USB_DWC2 is not set
    < # CONFIG_USB_CHIPIDEA is not set
    < # CONFIG_USB_ISP1760 is not set
    < 
    < #
    < # USB port drivers
    < #
    < # CONFIG_USB_SERIAL is not set
    < 
    < #
    < # USB Miscellaneous drivers
    < #
    < # CONFIG_USB_EMI62 is not set
    < # CONFIG_USB_EMI26 is not set
    < # CONFIG_USB_ADUTUX is not set
    < # CONFIG_USB_SEVSEG is not set
    < # CONFIG_USB_LEGOTOWER is not set
    < # CONFIG_USB_LCD is not set
    < # CONFIG_USB_CYPRESS_CY7C63 is not set
    < # CONFIG_USB_CYTHERM is not set
    < # CONFIG_USB_IDMOUSE is not set
    < # CONFIG_USB_FTDI_ELAN is not set
    < # CONFIG_USB_APPLEDISPLAY is not set
    < # CONFIG_APPLE_MFI_FASTCHARGE is not set
    < # CONFIG_USB_SISUSBVGA is not set
    < # CONFIG_USB_LD is not set
    < # CONFIG_USB_TRANCEVIBRATOR is not set
    < # CONFIG_USB_IOWARRIOR is not set
    < # CONFIG_USB_TEST is not set
    < # CONFIG_USB_EHSET_TEST_FIXTURE is not set
    < # CONFIG_USB_ISIGHTFW is not set
    < # CONFIG_USB_YUREX is not set
    < # CONFIG_USB_EZUSB_FX2 is not set
    < # CONFIG_USB_HUB_USB251XB is not set
    ---
    > CONFIG_USB_DWC2=y
    > CONFIG_USB_CHIPIDEA=y
    > CONFIG_USB_CHIPIDEA_UDC=y
    > CONFIG_USB_CHIPIDEA_HOST=y
    > CONFIG_USB_ISP1760=y
    5320,5322d898
    < # CONFIG_USB_HSIC_USB4604 is not set
    < # CONFIG_USB_LINK_LAYER_TEST is not set
    < # CONFIG_USB_CHAOSKEY is not set
    5324,5328c900
    < 
    < #
    < # USB Physical Layer drivers
    < #
    < CONFIG_USB_PHY=y
    ---
    > CONFIG_AB8500_USB=y
    5331d902
    < CONFIG_AM335X_CONTROL_USB=m
    5336,5339c907
    < CONFIG_USB_ULPI=y
    < CONFIG_USB_ULPI_VIEWPORT=y
    < # end of USB Physical Layer drivers
    < 
    ---
    > CONFIG_USB_MXS_PHY=y
    5341,5344c909,914
    < # CONFIG_USB_GADGET_DEBUG is not set
    < # CONFIG_USB_GADGET_DEBUG_FILES is not set
    < # CONFIG_USB_GADGET_DEBUG_FS is not set
    < CONFIG_USB_GADGET_VBUS_DRAW=2
    ---
    > CONFIG_USB_ETH=m
    > CONFIG_USB_G_NCM=m
    > CONFIG_USB_MASS_STORAGE=m
    > CONFIG_USB_G_SERIAL=m
    > CONFIG_USB_G_MULTI=m
    > CONFIG_USB_G_MULTI_CDC=y
    5346,5392c916,918
    < # CONFIG_U_SERIAL_CONSOLE is not set
    < 
    < #
    < # USB Peripheral Controller
    < #
    < # CONFIG_USB_FOTG210_UDC is not set
    < # CONFIG_USB_GR_UDC is not set
    < # CONFIG_USB_R8A66597 is not set
    < # CONFIG_USB_PXA27X is not set
    < # CONFIG_USB_MV_UDC is not set
    < # CONFIG_USB_MV_U3D is not set
    < CONFIG_USB_SNP_CORE=y
    < CONFIG_USB_SNP_UDC_PLAT=y
    < # CONFIG_USB_M66592 is not set
    < CONFIG_USB_BDC_UDC=y
    < # CONFIG_USB_AMD5536UDC is not set
    < # CONFIG_USB_NET2272 is not set
    < # CONFIG_USB_NET2280 is not set
    < # CONFIG_USB_GOKU is not set
    < # CONFIG_USB_EG20T is not set
    < # CONFIG_USB_GADGET_XILINX is not set
    < # CONFIG_USB_MAX3420_UDC is not set
    < # CONFIG_USB_DUMMY_HCD is not set
    < # end of USB Peripheral Controller
    < 
    < CONFIG_USB_LIBCOMPOSITE=m
    < CONFIG_USB_F_ACM=m
    < CONFIG_USB_F_SS_LB=m
    < CONFIG_USB_U_SERIAL=m
    < CONFIG_USB_U_ETHER=m
    < CONFIG_USB_U_AUDIO=m
    < CONFIG_USB_F_SERIAL=m
    < CONFIG_USB_F_OBEX=m
    < CONFIG_USB_F_NCM=m
    < CONFIG_USB_F_ECM=m
    < CONFIG_USB_F_EEM=m
    < CONFIG_USB_F_SUBSET=m
    < CONFIG_USB_F_RNDIS=m
    < CONFIG_USB_F_MASS_STORAGE=m
    < CONFIG_USB_F_FS=m
    < CONFIG_USB_F_UAC1=m
    < CONFIG_USB_F_UAC1_LEGACY=m
    < CONFIG_USB_F_UAC2=m
    < CONFIG_USB_F_UVC=m
    < CONFIG_USB_F_MIDI=m
    < CONFIG_USB_F_HID=m
    < CONFIG_USB_F_PRINTER=m
    ---
    > CONFIG_USB_ZERO=m
    > CONFIG_USB_RENESAS_USBHS_UDC=m
    > CONFIG_USB_ASPEED_VHUB=m
    5412,5418d937
    < 
    < #
    < # USB Gadget precomposed configurations
    < #
    < CONFIG_USB_ZERO=m
    < # CONFIG_USB_ZERO_HNPTEST is not set
    < # CONFIG_USB_AUDIO is not set
    5420,5428d938
    < CONFIG_USB_ETH_RNDIS=y
    < # CONFIG_USB_ETH_EEM is not set
    < CONFIG_USB_G_NCM=m
    < # CONFIG_USB_GADGETFS is not set
    < # CONFIG_USB_FUNCTIONFS is not set
    < CONFIG_USB_MASS_STORAGE=m
    < CONFIG_USB_G_SERIAL=m
    < # CONFIG_USB_MIDI_GADGET is not set
    < # CONFIG_USB_G_PRINTER is not set
    5430,5439d939
    < # CONFIG_USB_G_ACM_MS is not set
    < CONFIG_USB_G_MULTI=m
    < CONFIG_USB_G_MULTI_RNDIS=y
    < CONFIG_USB_G_MULTI_CDC=y
    < # CONFIG_USB_G_HID is not set
    < # CONFIG_USB_G_DBGP is not set
    < # CONFIG_USB_G_WEBCAM is not set
    < # CONFIG_USB_RAW_GADGET is not set
    < # end of USB Gadget precomposed configurations
    < 
    5441,5446d940
    < # CONFIG_TYPEC_TCPM is not set
    < # CONFIG_TYPEC_UCSI is not set
    < # CONFIG_TYPEC_TPS6598X is not set
    < # CONFIG_TYPEC_ANX7411 is not set
    < # CONFIG_TYPEC_RT1719 is not set
    < # CONFIG_TYPEC_HD3SS3220 is not set
    5448,5463d941
    < # CONFIG_TYPEC_WUSB3801 is not set
    < 
    < #
    < # USB Type-C Multiplexer/DeMultiplexer Switch support
    < #
    < # CONFIG_TYPEC_MUX_FSA4480 is not set
    < # CONFIG_TYPEC_MUX_PI3USB30532 is not set
    < # end of USB Type-C Multiplexer/DeMultiplexer Switch support
    < 
    < #
    < # USB Type-C Alternate Mode drivers
    < #
    < # CONFIG_TYPEC_DP_ALTMODE is not set
    < # end of USB Type-C Alternate Mode drivers
    < 
    < CONFIG_USB_ROLE_SWITCH=y
    5465,5468d942
    < CONFIG_PWRSEQ_EMMC=y
    < # CONFIG_PWRSEQ_SD8787 is not set
    < CONFIG_PWRSEQ_SIMPLE=y
    < CONFIG_MMC_BLOCK=y
    5470,5476c944
    < # CONFIG_SDIO_UART is not set
    < # CONFIG_MMC_TEST is not set
    < 
    < #
    < # MMC/SD/SDIO Host Controller Drivers
    < #
    < # CONFIG_MMC_DEBUG is not set
    ---
    > CONFIG_MMC_ARMMMCI=y
    5478d945
    < # CONFIG_MMC_SDHCI_PCI is not set
    5482,5485c949,961
    < # CONFIG_MMC_SDHCI_OF_DWCMSHC is not set
    < # CONFIG_MMC_SDHCI_CADENCE is not set
    < # CONFIG_MMC_SDHCI_F_SDH30 is not set
    < # CONFIG_MMC_SDHCI_MILBEAUT is not set
    ---
    > CONFIG_MMC_SDHCI_OF_ESDHC=y
    > CONFIG_MMC_SDHCI_ESDHC_IMX=y
    > CONFIG_MMC_SDHCI_DOVE=y
    > CONFIG_MMC_SDHCI_TEGRA=y
    > CONFIG_MMC_SDHCI_S3C=y
    > CONFIG_MMC_SDHCI_PXAV3=y
    > CONFIG_MMC_SDHCI_PXAV2=m
    > CONFIG_MMC_SDHCI_SPEAR=y
    > CONFIG_MMC_SDHCI_S3C_DMA=y
    > CONFIG_MMC_SDHCI_BCM_KONA=y
    > CONFIG_MMC_MESON_MX_SDHC=y
    > CONFIG_MMC_MESON_MX_SDIO=y
    > CONFIG_MMC_SDHCI_ST=y
    5488,5491c964,968
    < # CONFIG_MMC_TIFM_SD is not set
    < # CONFIG_MMC_SPI is not set
    < # CONFIG_MMC_CB710 is not set
    < # CONFIG_MMC_VIA_SDMMC is not set
    ---
    > CONFIG_MMC_ATMELMCI=y
    > CONFIG_MMC_SDHCI_MSM=y
    > CONFIG_MMC_MVSDIO=y
    > CONFIG_MMC_SDHI=y
    > CONFIG_MMC_UNIPHIER=y
    5493,5494d969
    < CONFIG_MMC_DW_PLTFM=y
    < # CONFIG_MMC_DW_BLUEFIELD is not set
    5496,5506c971,974
    < # CONFIG_MMC_DW_HI3798CV200 is not set
    < # CONFIG_MMC_DW_K3 is not set
    < # CONFIG_MMC_DW_PCI is not set
    < # CONFIG_MMC_VUB300 is not set
    < # CONFIG_MMC_USHC is not set
    < # CONFIG_MMC_USDHI6ROL0 is not set
    < CONFIG_MMC_CQHCI=y
    < # CONFIG_MMC_HSQ is not set
    < # CONFIG_MMC_TOSHIBA_PCI is not set
    < # CONFIG_MMC_MTK is not set
    < # CONFIG_MMC_SDHCI_XENON is not set
    ---
    > CONFIG_MMC_DW_ROCKCHIP=y
    > CONFIG_MMC_SH_MMCIF=y
    > CONFIG_MMC_SUNXI=y
    > CONFIG_MMC_BCM2835=y
    5508,5510c976
    < CONFIG_MMC_SDHCI_EXTERNAL_DMA=y
    < # CONFIG_SCSI_UFSHCD is not set
    < # CONFIG_MEMSTICK is not set
    ---
    > CONFIG_MMC_OWL=y
    5514,5523d979
    < # CONFIG_LEDS_CLASS_MULTICOLOR is not set
    < # CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set
    < 
    < #
    < # LED drivers
    < #
    < # CONFIG_LEDS_AN30259A is not set
    < # CONFIG_LEDS_AW2013 is not set
    < # CONFIG_LEDS_BCM6328 is not set
    < # CONFIG_LEDS_BCM6358 is not set
    5525,5531d980
    < # CONFIG_LEDS_CR0014114 is not set
    < # CONFIG_LEDS_EL15203000 is not set
    < # CONFIG_LEDS_LM3530 is not set
    < # CONFIG_LEDS_LM3532 is not set
    < # CONFIG_LEDS_LM3642 is not set
    < # CONFIG_LEDS_LM3692X is not set
    < # CONFIG_LEDS_PCA9532 is not set
    5533,5540d981
    < # CONFIG_LEDS_LP3944 is not set
    < # CONFIG_LEDS_LP3952 is not set
    < # CONFIG_LEDS_LP50XX is not set
    < # CONFIG_LEDS_LP55XX_COMMON is not set
    < # CONFIG_LEDS_LP8860 is not set
    < # CONFIG_LEDS_PCA955X is not set
    < # CONFIG_LEDS_PCA963X is not set
    < # CONFIG_LEDS_DAC124S085 is not set
    5542,5578c983,984
    < # CONFIG_LEDS_REGULATOR is not set
    < # CONFIG_LEDS_BD2802 is not set
    < # CONFIG_LEDS_LT3593 is not set
    < # CONFIG_LEDS_TCA6507 is not set
    < # CONFIG_LEDS_TLC591XX is not set
    < # CONFIG_LEDS_LM355x is not set
    < # CONFIG_LEDS_IS31FL319X is not set
    < # CONFIG_LEDS_IS31FL32XX is not set
    < 
    < #
    < # LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
    < #
    < # CONFIG_LEDS_BLINKM is not set
    < # CONFIG_LEDS_SYSCON is not set
    < # CONFIG_LEDS_MLXREG is not set
    < # CONFIG_LEDS_USER is not set
    < # CONFIG_LEDS_SPI_BYTE is not set
    < # CONFIG_LEDS_TI_LMU_COMMON is not set
    < 
    < #
    < # Flash and Torch LED drivers
    < #
    < # CONFIG_LEDS_AAT1290 is not set
    < # CONFIG_LEDS_AS3645A is not set
    < # CONFIG_LEDS_KTD2692 is not set
    < # CONFIG_LEDS_LM3601X is not set
    < # CONFIG_LEDS_RT4505 is not set
    < # CONFIG_LEDS_RT8515 is not set
    < # CONFIG_LEDS_SGM3140 is not set
    < 
    < #
    < # RGB LED drivers
    < #
    < 
    < #
    < # LED Triggers
    < #
    ---
    > CONFIG_LEDS_MAX8997=m
    > CONFIG_LEDS_ACER_A500=m
    5579a986
    > CONFIG_LEDS_MAX77693=m
    5582,5583d988
    < # CONFIG_LEDS_TRIGGER_DISK is not set
    < # CONFIG_LEDS_TRIGGER_MTD is not set
    5587d991
    < # CONFIG_LEDS_TRIGGER_ACTIVITY is not set
    5590,5593d993
    < 
    < #
    < # iptables trigger is under Netfilter config (LED target)
    < #
    5596,5608d995
    < # CONFIG_LEDS_TRIGGER_PANIC is not set
    < # CONFIG_LEDS_TRIGGER_NETDEV is not set
    < # CONFIG_LEDS_TRIGGER_PATTERN is not set
    < CONFIG_LEDS_TRIGGER_AUDIO=m
    < # CONFIG_LEDS_TRIGGER_TTY is not set
    < 
    < #
    < # Simple LED drivers
    < #
    < # CONFIG_ACCESSIBILITY is not set
    < # CONFIG_INFINIBAND is not set
    < CONFIG_EDAC_ATOMIC_SCRUB=y
    < CONFIG_EDAC_SUPPORT=y
    5610,5613c997,998
    < CONFIG_EDAC_LEGACY_SYSFS=y
    < # CONFIG_EDAC_DEBUG is not set
    < # CONFIG_EDAC_TI is not set
    < CONFIG_RTC_LIB=y
    ---
    > CONFIG_EDAC_HIGHBANK_MC=y
    > CONFIG_EDAC_HIGHBANK_L2=y
    5615,5636c1000,1001
    < CONFIG_RTC_HCTOSYS=y
    < CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
    < CONFIG_RTC_SYSTOHC=y
    < CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
    < # CONFIG_RTC_DEBUG is not set
    < CONFIG_RTC_NVMEM=y
    < 
    < #
    < # RTC interfaces
    < #
    < CONFIG_RTC_INTF_SYSFS=y
    < CONFIG_RTC_INTF_PROC=y
    < CONFIG_RTC_INTF_DEV=y
    < # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
    < # CONFIG_RTC_DRV_TEST is not set
    < 
    < #
    < # I2C RTC drivers
    < #
    < # CONFIG_RTC_DRV_ABB5ZES3 is not set
    < # CONFIG_RTC_DRV_ABEOZ9 is not set
    < # CONFIG_RTC_DRV_ABX80X is not set
    ---
    > CONFIG_RTC_DRV_AC100=y
    > CONFIG_RTC_DRV_AS3722=y
    5638,5650c1003,1009
    < # CONFIG_RTC_DRV_DS1307_CENTURY is not set
    < # CONFIG_RTC_DRV_DS1374 is not set
    < # CONFIG_RTC_DRV_DS1672 is not set
    < # CONFIG_RTC_DRV_HYM8563 is not set
    < # CONFIG_RTC_DRV_MAX6900 is not set
    < # CONFIG_RTC_DRV_NCT3018Y is not set
    < # CONFIG_RTC_DRV_RS5C372 is not set
    < # CONFIG_RTC_DRV_ISL1208 is not set
    < # CONFIG_RTC_DRV_ISL12022 is not set
    < # CONFIG_RTC_DRV_ISL12026 is not set
    < # CONFIG_RTC_DRV_X1205 is not set
    < # CONFIG_RTC_DRV_PCF8523 is not set
    < # CONFIG_RTC_DRV_PCF85063 is not set
    ---
    > CONFIG_RTC_DRV_HYM8563=m
    > CONFIG_RTC_DRV_MAX8907=y
    > CONFIG_RTC_DRV_MAX8998=m
    > CONFIG_RTC_DRV_MAX8997=m
    > CONFIG_RTC_DRV_MAX77686=y
    > CONFIG_RTC_DRV_RK808=m
    > CONFIG_RTC_DRV_RS5C372=m
    5652,5655c1011
    < # CONFIG_RTC_DRV_PCF8563 is not set
    < # CONFIG_RTC_DRV_PCF8583 is not set
    < # CONFIG_RTC_DRV_M41T80 is not set
    < # CONFIG_RTC_DRV_BQ32K is not set
    ---
    > CONFIG_RTC_DRV_BQ32K=m
    5660,5707c1016,1020
    < # CONFIG_RTC_DRV_S35390A is not set
    < # CONFIG_RTC_DRV_FM3130 is not set
    < # CONFIG_RTC_DRV_RX8010 is not set
    < # CONFIG_RTC_DRV_RX8581 is not set
    < # CONFIG_RTC_DRV_RX8025 is not set
    < # CONFIG_RTC_DRV_EM3027 is not set
    < # CONFIG_RTC_DRV_RV3028 is not set
    < # CONFIG_RTC_DRV_RV3032 is not set
    < # CONFIG_RTC_DRV_RV8803 is not set
    < # CONFIG_RTC_DRV_SD3078 is not set
    < 
    < #
    < # SPI RTC drivers
    < #
    < # CONFIG_RTC_DRV_M41T93 is not set
    < # CONFIG_RTC_DRV_M41T94 is not set
    < # CONFIG_RTC_DRV_DS1302 is not set
    < # CONFIG_RTC_DRV_DS1305 is not set
    < # CONFIG_RTC_DRV_DS1343 is not set
    < # CONFIG_RTC_DRV_DS1347 is not set
    < # CONFIG_RTC_DRV_DS1390 is not set
    < # CONFIG_RTC_DRV_MAX6916 is not set
    < # CONFIG_RTC_DRV_R9701 is not set
    < # CONFIG_RTC_DRV_RX4581 is not set
    < # CONFIG_RTC_DRV_RS5C348 is not set
    < # CONFIG_RTC_DRV_MAX6902 is not set
    < # CONFIG_RTC_DRV_PCF2123 is not set
    < # CONFIG_RTC_DRV_MCP795 is not set
    < CONFIG_RTC_I2C_AND_SPI=y
    < 
    < #
    < # SPI and I2C RTC drivers
    < #
    < # CONFIG_RTC_DRV_DS3232 is not set
    < # CONFIG_RTC_DRV_PCF2127 is not set
    < # CONFIG_RTC_DRV_RV3029C2 is not set
    < # CONFIG_RTC_DRV_RX6110 is not set
    < 
    < #
    < # Platform RTC drivers
    < #
    < # CONFIG_RTC_DRV_CMOS is not set
    < # CONFIG_RTC_DRV_DS1286 is not set
    < # CONFIG_RTC_DRV_DS1511 is not set
    < # CONFIG_RTC_DRV_DS1553 is not set
    < # CONFIG_RTC_DRV_DS1685_FAMILY is not set
    < # CONFIG_RTC_DRV_DS1742 is not set
    < # CONFIG_RTC_DRV_DS2404 is not set
    ---
    > CONFIG_RTC_DRV_S35390A=m
    > CONFIG_RTC_DRV_RX8581=m
    > CONFIG_RTC_DRV_EM3027=y
    > CONFIG_RTC_DRV_S5M=m
    > CONFIG_RTC_DRV_DA9063=m
    5709,5721c1022
    < # CONFIG_RTC_DRV_STK17TA8 is not set
    < # CONFIG_RTC_DRV_M48T86 is not set
    < # CONFIG_RTC_DRV_M48T35 is not set
    < # CONFIG_RTC_DRV_M48T59 is not set
    < # CONFIG_RTC_DRV_MSM6242 is not set
    < # CONFIG_RTC_DRV_BQ4802 is not set
    < # CONFIG_RTC_DRV_RP5C01 is not set
    < # CONFIG_RTC_DRV_V3020 is not set
    < # CONFIG_RTC_DRV_ZYNQMP is not set
    < 
    < #
    < # on-CPU RTC drivers
    < #
    ---
    > CONFIG_RTC_DRV_DIGICOLOR=m
    5723,5725c1024,1036
    < # CONFIG_RTC_DRV_CADENCE is not set
    < # CONFIG_RTC_DRV_FTRTC010 is not set
    < # CONFIG_RTC_DRV_R7301 is not set
    ---
    > CONFIG_RTC_DRV_S3C=m
    > CONFIG_RTC_DRV_SA1100=m
    > CONFIG_RTC_DRV_SH=m
    > CONFIG_RTC_DRV_PL031=y
    > CONFIG_RTC_DRV_AT91RM9200=m
    > CONFIG_RTC_DRV_AT91SAM9=m
    > CONFIG_RTC_DRV_VT8500=y
    > CONFIG_RTC_DRV_SUNXI=y
    > CONFIG_RTC_DRV_MV=y
    > CONFIG_RTC_DRV_PM8XXX=m
    > CONFIG_RTC_DRV_TEGRA=y
    > CONFIG_RTC_DRV_ST_LPC=y
    > CONFIG_RTC_DRV_STM32=y
    5727,5731c1038
    < 
    < #
    < # HID Sensor RTC drivers
    < #
    < # CONFIG_RTC_DRV_GOLDFISH is not set
    ---
    > CONFIG_RTC_DRV_ASPEED=m
    5733,5742c1040,1043
    < # CONFIG_DMADEVICES_DEBUG is not set
    < 
    < #
    < # DMA Devices
    < #
    < CONFIG_DMA_ENGINE=y
    < CONFIG_DMA_VIRTUAL_CHANNELS=y
    < CONFIG_DMA_OF=y
    < # CONFIG_ALTERA_MSGDMA is not set
    < # CONFIG_DW_AXI_DMAC is not set
    ---
    > CONFIG_AT_HDMAC=y
    > CONFIG_AT_XDMAC=y
    > CONFIG_DMA_BCM2835=y
    > CONFIG_DMA_SUN6I=y
    5744,5751c1045,1059
    < # CONFIG_FSL_QDMA is not set
    < # CONFIG_INTEL_IDMA64 is not set
    < # CONFIG_NBPFAXI_DMA is not set
    < # CONFIG_PLX_DMA is not set
    < # CONFIG_XILINX_ZYNQMP_DPDMA is not set
    < # CONFIG_QCOM_HIDMA_MGMT is not set
    < # CONFIG_QCOM_HIDMA is not set
    < CONFIG_DW_DMAC_CORE=y
    ---
    > CONFIG_IMX_DMA=y
    > CONFIG_IMX_SDMA=y
    > CONFIG_MV_XOR=y
    > CONFIG_MXS_DMA=y
    > CONFIG_OWL_DMA=y
    > CONFIG_PL330_DMA=y
    > CONFIG_STE_DMA40=y
    > CONFIG_ST_FDMA=m
    > CONFIG_STM32_DMA=y
    > CONFIG_STM32_DMAMUX=y
    > CONFIG_STM32_MDMA=y
    > CONFIG_TEGRA20_APB_DMA=y
    > CONFIG_UNIPHIER_MDMAC=y
    > CONFIG_XILINX_DMA=y
    > CONFIG_QCOM_BAM_DMA=y
    5753,5776c1061,1062
    < # CONFIG_DW_DMAC_PCI is not set
    < # CONFIG_DW_EDMA is not set
    < # CONFIG_DW_EDMA_PCIE is not set
    < # CONFIG_SF_PDMA is not set
    < CONFIG_TI_CPPI41=m
    < CONFIG_TI_EDMA=y
    < CONFIG_DMA_OMAP=y
    < CONFIG_TI_DMA_CROSSBAR=y
    < 
    < #
    < # DMA Clients
    < #
    < # CONFIG_ASYNC_TX_DMA is not set
    < # CONFIG_DMATEST is not set
    < 
    < #
    < # DMABUF options
    < #
    < CONFIG_SYNC_FILE=y
    < # CONFIG_SW_SYNC is not set
    < # CONFIG_UDMABUF is not set
    < # CONFIG_DMABUF_MOVE_NOTIFY is not set
    < # CONFIG_DMABUF_DEBUG is not set
    < # CONFIG_DMABUF_SELFTESTS is not set
    ---
    > CONFIG_RCAR_DMAC=y
    > CONFIG_RENESAS_USB_DMAC=m
    5778d1063
    < # CONFIG_DMABUF_SYSFS_STATS is not set
    5782,5792d1066
    < # end of DMABUF options
    < 
    < # CONFIG_AUXDISPLAY is not set
    < # CONFIG_UIO is not set
    < # CONFIG_VFIO is not set
    < # CONFIG_VIRT_DRIVERS is not set
    < CONFIG_VIRTIO_ANCHOR=y
    < CONFIG_VIRTIO=y
    < CONFIG_VIRTIO_PCI_LIB=y
    < CONFIG_VIRTIO_PCI_LIB_LEGACY=y
    < CONFIG_VIRTIO_MENU=y
    5794,5796d1067
    < CONFIG_VIRTIO_PCI_LEGACY=y
    < # CONFIG_VIRTIO_BALLOON is not set
    < # CONFIG_VIRTIO_INPUT is not set
    5798,5810d1068
    < # CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
    < # CONFIG_VDPA is not set
    < CONFIG_VHOST_MENU=y
    < # CONFIG_VHOST_NET is not set
    < # CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
    < 
    < #
    < # Microsoft Hyper-V guest support
    < #
    < # end of Microsoft Hyper-V guest support
    < 
    < # CONFIG_GREYBUS is not set
    < # CONFIG_COMEDI is not set
    5812,5872c1070,1074
    < # CONFIG_PRISM2_USB is not set
    < # CONFIG_RTL8192U is not set
    < # CONFIG_RTLLIB is not set
    < # CONFIG_RTL8723BS is not set
    < # CONFIG_R8712U is not set
    < # CONFIG_R8188EU is not set
    < # CONFIG_RTS5208 is not set
    < # CONFIG_VT6655 is not set
    < # CONFIG_VT6656 is not set
    < 
    < #
    < # IIO staging drivers
    < #
    < 
    < #
    < # Accelerometers
    < #
    < # CONFIG_ADIS16203 is not set
    < # CONFIG_ADIS16240 is not set
    < # end of Accelerometers
    < 
    < #
    < # Analog to digital converters
    < #
    < # CONFIG_AD7816 is not set
    < # end of Analog to digital converters
    < 
    < #
    < # Analog digital bi-direction converters
    < #
    < # CONFIG_ADT7316 is not set
    < # end of Analog digital bi-direction converters
    < 
    < #
    < # Direct Digital Synthesis
    < #
    < # CONFIG_AD9832 is not set
    < # CONFIG_AD9834 is not set
    < # end of Direct Digital Synthesis
    < 
    < #
    < # Network Analyzer, Impedance Converters
    < #
    < # CONFIG_AD5933 is not set
    < # end of Network Analyzer, Impedance Converters
    < 
    < #
    < # Active energy metering IC
    < #
    < # CONFIG_ADE7854 is not set
    < # end of Active energy metering IC
    < 
    < #
    < # Resolver to digital converters
    < #
    < # CONFIG_AD2S1210 is not set
    < # end of Resolver to digital converters
    < # end of IIO staging drivers
    < 
    < # CONFIG_FB_SM750 is not set
    < # CONFIG_STAGING_MEDIA is not set
    ---
    > CONFIG_MFD_NVEC=y
    > CONFIG_KEYBOARD_NVEC=y
    > CONFIG_SERIO_NVEC_PS2=y
    > CONFIG_NVEC_POWER=y
    > CONFIG_NVEC_PAZ00=y
    5874,5898c1076,1081
    < # CONFIG_LTE_GDM724X is not set
    < # CONFIG_FB_TFT is not set
    < # CONFIG_KS7010 is not set
    < # CONFIG_PI433 is not set
    < # CONFIG_XIL_AXIS_FIFO is not set
    < # CONFIG_FIELDBUS_DEV is not set
    < # CONFIG_QLGE is not set
    < # CONFIG_VME_BUS is not set
    < # CONFIG_GOLDFISH is not set
    < # CONFIG_CHROME_PLATFORMS is not set
    < # CONFIG_MELLANOX_PLATFORM is not set
    < CONFIG_HAVE_CLK=y
    < CONFIG_HAVE_CLK_PREPARE=y
    < CONFIG_COMMON_CLK=y
    < 
    < #
    < # Clock driver for ARM Reference designs
    < #
    < CONFIG_CLK_ICST=y
    < CONFIG_CLK_SP810=y
    < CONFIG_CLK_VEXPRESS_OSC=y
    < # end of Clock driver for ARM Reference designs
    < 
    < # CONFIG_LMK04832 is not set
    < # CONFIG_COMMON_CLK_MAX9485 is not set
    ---
    > CONFIG_CHROME_PLATFORMS=y
    > CONFIG_CROS_EC=m
    > CONFIG_CROS_EC_I2C=m
    > CONFIG_CROS_EC_SPI=m
    > CONFIG_COMMON_CLK_MAX77686=y
    > CONFIG_COMMON_CLK_RK808=m
    5900,5919c1083,1095
    < # CONFIG_COMMON_CLK_SI5341 is not set
    < # CONFIG_COMMON_CLK_SI5351 is not set
    < # CONFIG_COMMON_CLK_SI514 is not set
    < # CONFIG_COMMON_CLK_SI544 is not set
    < # CONFIG_COMMON_CLK_SI570 is not set
    < # CONFIG_COMMON_CLK_CDCE706 is not set
    < # CONFIG_COMMON_CLK_CDCE925 is not set
    < # CONFIG_COMMON_CLK_CS2000_CP is not set
    < # CONFIG_COMMON_CLK_AXI_CLKGEN is not set
    < # CONFIG_COMMON_CLK_PALMAS is not set
    < # CONFIG_COMMON_CLK_PWM is not set
    < # CONFIG_COMMON_CLK_RS9_PCIE is not set
    < # CONFIG_COMMON_CLK_VC5 is not set
    < # CONFIG_COMMON_CLK_VC7 is not set
    < # CONFIG_COMMON_CLK_FIXED_MMIO is not set
    < CONFIG_COMMON_CLK_KEYSTONE=y
    < CONFIG_TI_SYSCON_CLK=y
    < CONFIG_COMMON_CLK_TI_ADPLL=y
    < # CONFIG_XILINX_VCU is not set
    < # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
    ---
    > CONFIG_COMMON_CLK_LAN966X=y
    > CONFIG_COMMON_CLK_S2MPS11=m
    > CONFIG_CLK_RASPBERRYPI=y
    > CONFIG_COMMON_CLK_QCOM=y
    > CONFIG_QCOM_A53PLL=y
    > CONFIG_QCOM_CLK_APCS_MSM8916=y
    > CONFIG_QCOM_CLK_RPM=y
    > CONFIG_QCOM_CLK_SMD_RPM=y
    > CONFIG_APQ_MMCC_8084=y
    > CONFIG_MSM_GCC_8660=y
    > CONFIG_MSM_GCC_8916=y
    > CONFIG_MSM_MMCC_8960=y
    > CONFIG_MSM_MMCC_8974=y
    5922,5939c1098
    < 
    < #
    < # Clock Source drivers
    < #
    < CONFIG_TIMER_OF=y
    < CONFIG_TIMER_PROBE=y
    < CONFIG_OMAP_DM_SYSTIMER=y
    < CONFIG_CLKSRC_MMIO=y
    < CONFIG_OMAP_DM_TIMER=y
    < CONFIG_KEYSTONE_TIMER=y
    < CONFIG_CLKSRC_TI_32K=y
    < CONFIG_ARM_ARCH_TIMER=y
    < CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
    < CONFIG_MICROCHIP_PIT64B=y
    < # end of Clock Source drivers
    < 
    < CONFIG_MAILBOX=y
    < # CONFIG_PLATFORM_MHU is not set
    ---
    > CONFIG_HWSPINLOCK_QCOM=y
    5941,5961c1100,1102
    < CONFIG_OMAP_MBOX_KFIFO_SIZE=256
    < # CONFIG_ALTERA_MBOX is not set
    < # CONFIG_TI_MESSAGE_MANAGER is not set
    < # CONFIG_MAILBOX_TEST is not set
    < CONFIG_IOMMU_API=y
    < CONFIG_IOMMU_SUPPORT=y
    < 
    < #
    < # Generic IOMMU Pagetable Support
    < #
    < CONFIG_IOMMU_IO_PGTABLE=y
    < CONFIG_IOMMU_IO_PGTABLE_LPAE=y
    < # CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set
    < # CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
    < # end of Generic IOMMU Pagetable Support
    < 
    < # CONFIG_IOMMU_DEBUGFS is not set
    < CONFIG_IOMMU_DEFAULT_DMA_STRICT=y
    < # CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set
    < # CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
    < CONFIG_OF_IOMMU=y
    ---
    > CONFIG_BCM2835_MBOX=y
    > CONFIG_QCOM_APCS_IPC=y
    > CONFIG_QCOM_IPCC=y
    5963,5968c1104,1108
    < # CONFIG_OMAP_IOMMU_DEBUG is not set
    < # CONFIG_ARM_SMMU is not set
    < 
    < #
    < # Remoteproc drivers
    < #
    ---
    > CONFIG_ROCKCHIP_IOMMU=y
    > CONFIG_TEGRA_IOMMU_GART=y
    > CONFIG_TEGRA_IOMMU_SMMU=y
    > CONFIG_EXYNOS_IOMMU=y
    > CONFIG_QCOM_IOMMU=y
    5970,5972d1109
    < # CONFIG_REMOTEPROC_CDEV is not set
    < CONFIG_OMAP_REMOTEPROC=m
    < # CONFIG_OMAP_REMOTEPROC_WATCHDOG is not set
    5974,5981c1111,1115
    < # CONFIG_KEYSTONE_REMOTEPROC is not set
    < CONFIG_PRU_REMOTEPROC=m
    < # end of Remoteproc drivers
    < 
    < #
    < # Rpmsg drivers
    < #
    < CONFIG_RPMSG=m
    ---
    > CONFIG_QCOM_Q6V5_MSS=m
    > CONFIG_QCOM_SYSMON=m
    > CONFIG_QCOM_WCNSS_PIL=m
    > CONFIG_ST_REMOTEPROC=m
    > CONFIG_OMAP_REMOTEPROC=m
    5982a1117
    > CONFIG_RPMSG_PROTO=m
    5984,5985c1119
    < CONFIG_RPMSG_NS=m
    < # CONFIG_RPMSG_QCOM_GLINK_RPM is not set
    ---
    > CONFIG_RPMSG_QCOM_SMD=y
    5988,6043c1122,1165
    < # end of Rpmsg drivers
    < 
    < #
    < # Rpmsg virtual device drivers
    < #
    < CONFIG_RPMSG_KDRV=m
    < # CONFIG_RPMSG_KDRV_DEMO is not set
    < # CONFIG_RPMSG_KDRV_DISPLAY is not set
    < CONFIG_RPMSG_KDRV_ETH_SWITCH=m
    < # end of Rpmsg virtual device drivers
    < 
    < # CONFIG_SOUNDWIRE is not set
    < 
    < #
    < # SOC (System On Chip) specific Drivers
    < #
    < 
    < #
    < # Amlogic SoC drivers
    < #
    < # end of Amlogic SoC drivers
    < 
    < #
    < # Broadcom SoC drivers
    < #
    < CONFIG_SOC_BRCMSTB=y
    < # end of Broadcom SoC drivers
    < 
    < #
    < # NXP/Freescale QorIQ SoC drivers
    < #
    < # CONFIG_QUICC_ENGINE is not set
    < # CONFIG_FSL_RCPM is not set
    < # end of NXP/Freescale QorIQ SoC drivers
    < 
    < #
    < # fujitsu SoC drivers
    < #
    < # end of fujitsu SoC drivers
    < 
    < #
    < # i.MX SoC drivers
    < #
    < # end of i.MX SoC drivers
    < 
    < #
    < # Enable LiteX SoC Builder specific drivers
    < #
    < # CONFIG_LITEX_SOC_CONTROLLER is not set
    < # end of Enable LiteX SoC Builder specific drivers
    < 
    < #
    < # Qualcomm SoC drivers
    < #
    < # end of Qualcomm SoC drivers
    < 
    ---
    > CONFIG_ASPEED_LPC_CTRL=m
    > CONFIG_ASPEED_LPC_SNOOP=m
    > CONFIG_ASPEED_P2A_CTRL=m
    > CONFIG_RASPBERRYPI_POWER=y
    > CONFIG_QCOM_COMMAND_DB=m
    > CONFIG_QCOM_CPR=y
    > CONFIG_QCOM_GSBI=y
    > CONFIG_QCOM_OCMEM=m
    > CONFIG_QCOM_RMTFS_MEM=m
    > CONFIG_QCOM_RPMH=y
    > CONFIG_QCOM_RPMHPD=y
    > CONFIG_QCOM_RPMPD=y
    > CONFIG_QCOM_SMEM=y
    > CONFIG_QCOM_SMD_RPM=y
    > CONFIG_QCOM_SMP2P=y
    > CONFIG_QCOM_SMSM=y
    > CONFIG_QCOM_SOCINFO=m
    > CONFIG_QCOM_STATS=m
    > CONFIG_QCOM_WCNSS_CTRL=m
    > CONFIG_ARCH_EMEV2=y
    > CONFIG_ARCH_R8A7794=y
    > CONFIG_ARCH_R8A7779=y
    > CONFIG_ARCH_R8A7790=y
    > CONFIG_ARCH_R8A7778=y
    > CONFIG_ARCH_R8A7793=y
    > CONFIG_ARCH_R8A7791=y
    > CONFIG_ARCH_R8A7792=y
    > CONFIG_ARCH_R8A7740=y
    > CONFIG_ARCH_R8A73A4=y
    > CONFIG_ARCH_R7S72100=y
    > CONFIG_ARCH_R7S9210=y
    > CONFIG_ARCH_R8A77470=y
    > CONFIG_ARCH_R8A7745=y
    > CONFIG_ARCH_R8A7742=y
    > CONFIG_ARCH_R8A7743=y
    > CONFIG_ARCH_R8A7744=y
    > CONFIG_ARCH_R9A06G032=y
    > CONFIG_ARCH_SH73A0=y
    > CONFIG_ROCKCHIP_IODOMAIN=y
    > CONFIG_ROCKCHIP_PM_DOMAINS=y
    > CONFIG_ARCH_TEGRA_2x_SOC=y
    > CONFIG_ARCH_TEGRA_3x_SOC=y
    > CONFIG_ARCH_TEGRA_114_SOC=y
    > CONFIG_ARCH_TEGRA_124_SOC=y
    6045,6046d1166
    < # CONFIG_KEYSTONE_NAVIGATOR_QMSS is not set
    < # CONFIG_KEYSTONE_NAVIGATOR_DMA is not set
    6050,6080c1170,1178
    < 
    < #
    < # Xilinx SoC drivers
    < #
    < # end of Xilinx SoC drivers
    < # end of SOC (System On Chip) specific Drivers
    < 
    < CONFIG_PM_DEVFREQ=y
    < 
    < #
    < # DEVFREQ Governors
    < #
    < CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
    < # CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
    < # CONFIG_DEVFREQ_GOV_POWERSAVE is not set
    < # CONFIG_DEVFREQ_GOV_USERSPACE is not set
    < CONFIG_DEVFREQ_GOV_PASSIVE=m
    < 
    < #
    < # DEVFREQ Drivers
    < #
    < CONFIG_PM_DEVFREQ_EVENT=y
    < CONFIG_EXTCON=y
    < 
    < #
    < # Extcon Device Drivers
    < #
    < # CONFIG_EXTCON_ADC_JACK is not set
    < # CONFIG_EXTCON_FSA9480 is not set
    < # CONFIG_EXTCON_GPIO is not set
    < # CONFIG_EXTCON_MAX3355 is not set
    ---
    > CONFIG_TI_PRUETH=m
    > CONFIG_TI_ICSS_IEP=m
    > CONFIG_PM_DEBUG=y
    > CONFIG_PM_ADVANCED_DEBUG=y
    > CONFIG_PM_TEST_SUSPEND=y
    > CONFIG_DPM_WATCHDOG=y
    > CONFIG_ARM_EXYNOS_BUS_DEVFREQ=m
    > CONFIG_ARM_TEGRA_DEVFREQ=m
    > CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP=m
    6082,6084c1180,1182
    < # CONFIG_EXTCON_PTN5150 is not set
    < # CONFIG_EXTCON_RT8973A is not set
    < # CONFIG_EXTCON_SM5502 is not set
    ---
    > CONFIG_EXTCON_MAX14577=m
    > CONFIG_EXTCON_MAX77693=m
    > CONFIG_EXTCON_MAX8997=m
    6086,6087d1183
    < # CONFIG_EXTCON_USBC_TUSB320 is not set
    < CONFIG_MEMORY=y
    6089,6091d1184
    < # CONFIG_TI_EMIF is not set
    < CONFIG_OMAP_GPMC=y
    < # CONFIG_OMAP_GPMC_DEBUG is not set
    6092a1186,1187
    > CONFIG_STM32_FMC2_EBI=y
    > CONFIG_EXYNOS5422_DMC=m
    6094,6104d1188
    < CONFIG_IIO_BUFFER=y
    < CONFIG_IIO_BUFFER_CB=m
    < # CONFIG_IIO_BUFFER_DMA is not set
    < # CONFIG_IIO_BUFFER_DMAENGINE is not set
    < CONFIG_IIO_BUFFER_HW_CONSUMER=m
    < CONFIG_IIO_KFIFO_BUF=y
    < CONFIG_IIO_TRIGGERED_BUFFER=y
    < CONFIG_IIO_CONFIGFS=y
    < CONFIG_IIO_TRIGGER=y
    < CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
    < # CONFIG_IIO_SW_DEVICE is not set
    6106,6176c1190,1193
    < # CONFIG_IIO_TRIGGERED_EVENT is not set
    < 
    < #
    < # Accelerometers
    < #
    < # CONFIG_ADIS16201 is not set
    < # CONFIG_ADIS16209 is not set
    < # CONFIG_ADXL313_I2C is not set
    < # CONFIG_ADXL313_SPI is not set
    < # CONFIG_ADXL355_I2C is not set
    < # CONFIG_ADXL355_SPI is not set
    < # CONFIG_ADXL367_SPI is not set
    < # CONFIG_ADXL367_I2C is not set
    < # CONFIG_ADXL372_SPI is not set
    < # CONFIG_ADXL372_I2C is not set
    < # CONFIG_BMA180 is not set
    < # CONFIG_BMA220 is not set
    < # CONFIG_BMA400 is not set
    < # CONFIG_BMC150_ACCEL is not set
    < # CONFIG_BMI088_ACCEL is not set
    < # CONFIG_DA280 is not set
    < # CONFIG_DA311 is not set
    < # CONFIG_DMARD06 is not set
    < # CONFIG_DMARD09 is not set
    < # CONFIG_DMARD10 is not set
    < # CONFIG_FXLS8962AF_I2C is not set
    < # CONFIG_FXLS8962AF_SPI is not set
    < # CONFIG_IIO_ST_ACCEL_3AXIS is not set
    < # CONFIG_KXSD9 is not set
    < # CONFIG_KXCJK1013 is not set
    < # CONFIG_MC3230 is not set
    < # CONFIG_MMA7455_I2C is not set
    < # CONFIG_MMA7455_SPI is not set
    < # CONFIG_MMA7660 is not set
    < # CONFIG_MMA8452 is not set
    < # CONFIG_MMA9551 is not set
    < # CONFIG_MMA9553 is not set
    < # CONFIG_MSA311 is not set
    < # CONFIG_MXC4005 is not set
    < # CONFIG_MXC6255 is not set
    < # CONFIG_SCA3000 is not set
    < # CONFIG_SCA3300 is not set
    < # CONFIG_STK8312 is not set
    < # CONFIG_STK8BA50 is not set
    < # end of Accelerometers
    < 
    < #
    < # Analog to digital converters
    < #
    < # CONFIG_AD7091R5 is not set
    < # CONFIG_AD7124 is not set
    < # CONFIG_AD7192 is not set
    < # CONFIG_AD7266 is not set
    < # CONFIG_AD7280 is not set
    < # CONFIG_AD7291 is not set
    < # CONFIG_AD7292 is not set
    < # CONFIG_AD7298 is not set
    < # CONFIG_AD7476 is not set
    < # CONFIG_AD7606_IFACE_PARALLEL is not set
    < # CONFIG_AD7606_IFACE_SPI is not set
    < # CONFIG_AD7766 is not set
    < # CONFIG_AD7768_1 is not set
    < # CONFIG_AD7780 is not set
    < # CONFIG_AD7791 is not set
    < # CONFIG_AD7793 is not set
    < # CONFIG_AD7887 is not set
    < # CONFIG_AD7923 is not set
    < # CONFIG_AD7949 is not set
    < # CONFIG_AD799X is not set
    < # CONFIG_ADI_AXI_ADC is not set
    < # CONFIG_CC10001_ADC is not set
    ---
    > CONFIG_ASPEED_ADC=m
    > CONFIG_AT91_ADC=m
    > CONFIG_AT91_SAMA5D2_ADC=m
    > CONFIG_BERLIN2_ADC=m
    6178,6199c1195,1196
    < # CONFIG_ENVELOPE_DETECTOR is not set
    < # CONFIG_HI8435 is not set
    < # CONFIG_HX711 is not set
    < # CONFIG_INA2XX_ADC is not set
    < # CONFIG_LTC2471 is not set
    < # CONFIG_LTC2485 is not set
    < # CONFIG_LTC2496 is not set
    < # CONFIG_LTC2497 is not set
    < # CONFIG_MAX1027 is not set
    < # CONFIG_MAX11100 is not set
    < # CONFIG_MAX1118 is not set
    < # CONFIG_MAX11205 is not set
    < # CONFIG_MAX1241 is not set
    < # CONFIG_MAX1363 is not set
    < # CONFIG_MAX9611 is not set
    < # CONFIG_MCP320X is not set
    < # CONFIG_MCP3422 is not set
    < # CONFIG_MCP3911 is not set
    < # CONFIG_NAU7802 is not set
    < # CONFIG_PALMAS_GPADC is not set
    < CONFIG_QCOM_VADC_COMMON=m
    < # CONFIG_QCOM_SPMI_IADC is not set
    ---
    > CONFIG_EXYNOS_ADC=m
    > CONFIG_MESON_SARADC=m
    6201,6216c1198,1202
    < # CONFIG_QCOM_SPMI_ADC5 is not set
    < # CONFIG_RICHTEK_RTQ6056 is not set
    < # CONFIG_SD_ADC_MODULATOR is not set
    < # CONFIG_TI_ADC081C is not set
    < # CONFIG_TI_ADC0832 is not set
    < # CONFIG_TI_ADC084S021 is not set
    < # CONFIG_TI_ADC12138 is not set
    < # CONFIG_TI_ADC108S102 is not set
    < # CONFIG_TI_ADC128S052 is not set
    < # CONFIG_TI_ADC161S626 is not set
    < # CONFIG_TI_ADS1015 is not set
    < # CONFIG_TI_ADS7950 is not set
    < # CONFIG_TI_ADS8344 is not set
    < # CONFIG_TI_ADS8688 is not set
    < # CONFIG_TI_ADS124S08 is not set
    < # CONFIG_TI_ADS131E08 is not set
    ---
    > CONFIG_ROCKCHIP_SARADC=m
    > CONFIG_STM32_ADC_CORE=m
    > CONFIG_STM32_ADC=m
    > CONFIG_STM32_DFSDM_ADC=m
    > CONFIG_STMPE_ADC=m
    6218,6221d1203
    < # CONFIG_TI_TLC4541 is not set
    < # CONFIG_TI_TSC2046 is not set
    < # CONFIG_TWL4030_MADC is not set
    < # CONFIG_TWL6030_GPADC is not set
    6224,6374c1206,1208
    < # end of Analog to digital converters
    < 
    < #
    < # Analog to digital and digital to analog converters
    < #
    < # CONFIG_AD74413R is not set
    < # end of Analog to digital and digital to analog converters
    < 
    < #
    < # Analog Front Ends
    < #
    < # CONFIG_IIO_RESCALE is not set
    < # end of Analog Front Ends
    < 
    < #
    < # Amplifiers
    < #
    < # CONFIG_AD8366 is not set
    < # CONFIG_ADA4250 is not set
    < # CONFIG_HMC425 is not set
    < # end of Amplifiers
    < 
    < #
    < # Capacitance to digital converters
    < #
    < # CONFIG_AD7150 is not set
    < # CONFIG_AD7746 is not set
    < # end of Capacitance to digital converters
    < 
    < #
    < # Chemical Sensors
    < #
    < # CONFIG_ATLAS_PH_SENSOR is not set
    < # CONFIG_ATLAS_EZO_SENSOR is not set
    < # CONFIG_BME680 is not set
    < # CONFIG_CCS811 is not set
    < # CONFIG_IAQCORE is not set
    < # CONFIG_PMS7003 is not set
    < # CONFIG_SCD30_CORE is not set
    < # CONFIG_SCD4X is not set
    < # CONFIG_SENSIRION_SGP30 is not set
    < # CONFIG_SENSIRION_SGP40 is not set
    < # CONFIG_SPS30_I2C is not set
    < # CONFIG_SPS30_SERIAL is not set
    < # CONFIG_SENSEAIR_SUNRISE_CO2 is not set
    < # CONFIG_VZ89X is not set
    < # end of Chemical Sensors
    < 
    < #
    < # Hid Sensor IIO Common
    < #
    < # end of Hid Sensor IIO Common
    < 
    < #
    < # IIO SCMI Sensors
    < #
    < # CONFIG_IIO_SCMI is not set
    < # end of IIO SCMI Sensors
    < 
    < #
    < # SSP Sensor Common
    < #
    < # CONFIG_IIO_SSP_SENSORHUB is not set
    < # end of SSP Sensor Common
    < 
    < #
    < # Digital to analog converters
    < #
    < # CONFIG_AD3552R is not set
    < # CONFIG_AD5064 is not set
    < # CONFIG_AD5360 is not set
    < # CONFIG_AD5380 is not set
    < # CONFIG_AD5421 is not set
    < # CONFIG_AD5446 is not set
    < # CONFIG_AD5449 is not set
    < # CONFIG_AD5592R is not set
    < # CONFIG_AD5593R is not set
    < # CONFIG_AD5504 is not set
    < # CONFIG_AD5624R_SPI is not set
    < # CONFIG_LTC2688 is not set
    < # CONFIG_AD5686_SPI is not set
    < # CONFIG_AD5696_I2C is not set
    < # CONFIG_AD5755 is not set
    < # CONFIG_AD5758 is not set
    < # CONFIG_AD5761 is not set
    < # CONFIG_AD5764 is not set
    < # CONFIG_AD5766 is not set
    < # CONFIG_AD5770R is not set
    < # CONFIG_AD5791 is not set
    < # CONFIG_AD7293 is not set
    < # CONFIG_AD7303 is not set
    < # CONFIG_AD8801 is not set
    < # CONFIG_DPOT_DAC is not set
    < # CONFIG_DS4424 is not set
    < # CONFIG_LTC1660 is not set
    < # CONFIG_LTC2632 is not set
    < # CONFIG_M62332 is not set
    < # CONFIG_MAX517 is not set
    < # CONFIG_MAX5821 is not set
    < # CONFIG_MCP4725 is not set
    < # CONFIG_MCP4922 is not set
    < # CONFIG_TI_DAC082S085 is not set
    < # CONFIG_TI_DAC5571 is not set
    < # CONFIG_TI_DAC7311 is not set
    < # CONFIG_TI_DAC7612 is not set
    < # CONFIG_VF610_DAC is not set
    < # end of Digital to analog converters
    < 
    < #
    < # IIO dummy driver
    < #
    < # end of IIO dummy driver
    < 
    < #
    < # Filters
    < #
    < # end of Filters
    < 
    < #
    < # Frequency Synthesizers DDS/PLL
    < #
    < 
    < #
    < # Clock Generator/Distribution
    < #
    < # CONFIG_AD9523 is not set
    < # end of Clock Generator/Distribution
    < 
    < #
    < # Phase-Locked Loop (PLL) frequency synthesizers
    < #
    < # CONFIG_ADF4350 is not set
    < # CONFIG_ADF4371 is not set
    < # CONFIG_ADMV1013 is not set
    < # CONFIG_ADMV4420 is not set
    < # CONFIG_ADRF6780 is not set
    < # end of Phase-Locked Loop (PLL) frequency synthesizers
    < # end of Frequency Synthesizers DDS/PLL
    < 
    < #
    < # Digital gyroscope sensors
    < #
    < # CONFIG_ADIS16080 is not set
    < # CONFIG_ADIS16130 is not set
    < # CONFIG_ADIS16136 is not set
    < # CONFIG_ADIS16260 is not set
    < # CONFIG_ADXRS290 is not set
    < # CONFIG_ADXRS450 is not set
    < # CONFIG_BMG160 is not set
    < # CONFIG_FXAS21002C is not set
    < CONFIG_MPU3050=y
    ---
    > CONFIG_IIO_CROS_EC_SENSORS_CORE=m
    > CONFIG_IIO_CROS_EC_SENSORS=m
    > CONFIG_STM32_DAC=m
    6376,6444d1209
    < # CONFIG_IIO_ST_GYRO_3AXIS is not set
    < # CONFIG_ITG3200 is not set
    < # end of Digital gyroscope sensors
    < 
    < #
    < # Health Sensors
    < #
    < 
    < #
    < # Heart Rate Monitors
    < #
    < # CONFIG_AFE4403 is not set
    < # CONFIG_AFE4404 is not set
    < # CONFIG_MAX30100 is not set
    < # CONFIG_MAX30102 is not set
    < # end of Heart Rate Monitors
    < # end of Health Sensors
    < 
    < #
    < # Humidity sensors
    < #
    < # CONFIG_AM2315 is not set
    < # CONFIG_DHT11 is not set
    < # CONFIG_HDC100X is not set
    < # CONFIG_HDC2010 is not set
    < # CONFIG_HTS221 is not set
    < # CONFIG_HTU21 is not set
    < # CONFIG_SI7005 is not set
    < # CONFIG_SI7020 is not set
    < # end of Humidity sensors
    < 
    < #
    < # Inertial measurement units
    < #
    < # CONFIG_ADIS16400 is not set
    < # CONFIG_ADIS16460 is not set
    < # CONFIG_ADIS16475 is not set
    < # CONFIG_ADIS16480 is not set
    < # CONFIG_BMI160_I2C is not set
    < # CONFIG_BMI160_SPI is not set
    < # CONFIG_BOSCH_BNO055_SERIAL is not set
    < # CONFIG_BOSCH_BNO055_I2C is not set
    < # CONFIG_FXOS8700_I2C is not set
    < # CONFIG_FXOS8700_SPI is not set
    < # CONFIG_KMX61 is not set
    < # CONFIG_INV_ICM42600_I2C is not set
    < # CONFIG_INV_ICM42600_SPI is not set
    < # CONFIG_INV_MPU6050_I2C is not set
    < # CONFIG_INV_MPU6050_SPI is not set
    < # CONFIG_IIO_ST_LSM6DSX is not set
    < # CONFIG_IIO_ST_LSM9DS0 is not set
    < # end of Inertial measurement units
    < 
    < #
    < # Light sensors
    < #
    < # CONFIG_ADJD_S311 is not set
    < # CONFIG_ADUX1020 is not set
    < # CONFIG_AL3010 is not set
    < # CONFIG_AL3320A is not set
    < # CONFIG_APDS9300 is not set
    < # CONFIG_APDS9960 is not set
    < # CONFIG_AS73211 is not set
    < # CONFIG_BH1750 is not set
    < # CONFIG_BH1780 is not set
    < # CONFIG_CM32181 is not set
    < # CONFIG_CM3232 is not set
    < # CONFIG_CM3323 is not set
    < # CONFIG_CM3605 is not set
    6446,6447c1211
    < # CONFIG_GP2AP002 is not set
    < # CONFIG_GP2AP020A00F is not set
    ---
    > CONFIG_IIO_CROS_EC_LIGHT_PROX=m
    6450,6484d1213
    < # CONFIG_ISL29125 is not set
    < # CONFIG_JSA1212 is not set
    < # CONFIG_RPR0521 is not set
    < # CONFIG_LTR501 is not set
    < # CONFIG_LTRF216A is not set
    < # CONFIG_LV0104CS is not set
    < # CONFIG_MAX44000 is not set
    < # CONFIG_MAX44009 is not set
    < # CONFIG_NOA1305 is not set
    < # CONFIG_OPT3001 is not set
    < # CONFIG_PA12203001 is not set
    < # CONFIG_SI1133 is not set
    < # CONFIG_SI1145 is not set
    < # CONFIG_STK3310 is not set
    < # CONFIG_ST_UVIS25 is not set
    < # CONFIG_TCS3414 is not set
    < # CONFIG_TCS3472 is not set
    < # CONFIG_SENSORS_TSL2563 is not set
    < # CONFIG_TSL2583 is not set
    < # CONFIG_TSL2591 is not set
    < # CONFIG_TSL2772 is not set
    < # CONFIG_TSL4531 is not set
    < # CONFIG_US5182D is not set
    < # CONFIG_VCNL4000 is not set
    < # CONFIG_VCNL4035 is not set
    < # CONFIG_VEML6030 is not set
    < # CONFIG_VEML6070 is not set
    < # CONFIG_VL6180 is not set
    < # CONFIG_ZOPT2201 is not set
    < # end of Light sensors
    < 
    < #
    < # Magnetometer sensors
    < #
    < # CONFIG_AK8974 is not set
    6486,6512d1214
    < # CONFIG_AK09911 is not set
    < # CONFIG_BMC150_MAGN_I2C is not set
    < # CONFIG_BMC150_MAGN_SPI is not set
    < # CONFIG_MAG3110 is not set
    < # CONFIG_MMC35240 is not set
    < # CONFIG_IIO_ST_MAGN_3AXIS is not set
    < # CONFIG_SENSORS_HMC5843_I2C is not set
    < # CONFIG_SENSORS_HMC5843_SPI is not set
    < # CONFIG_SENSORS_RM3100_I2C is not set
    < # CONFIG_SENSORS_RM3100_SPI is not set
    < # CONFIG_YAMAHA_YAS530 is not set
    < # end of Magnetometer sensors
    < 
    < #
    < # Multiplexers
    < #
    < # CONFIG_IIO_MUX is not set
    < # end of Multiplexers
    < 
    < #
    < # Inclinometer sensors
    < #
    < # end of Inclinometer sensors
    < 
    < #
    < # Triggers - standalone
    < #
    6514,6613c1216
    < # CONFIG_IIO_INTERRUPT_TRIGGER is not set
    < # CONFIG_IIO_TIGHTLOOP_TRIGGER is not set
    < # CONFIG_IIO_SYSFS_TRIGGER is not set
    < # end of Triggers - standalone
    < 
    < #
    < # Linear and angular position sensors
    < #
    < # end of Linear and angular position sensors
    < 
    < #
    < # Digital potentiometers
    < #
    < # CONFIG_AD5110 is not set
    < # CONFIG_AD5272 is not set
    < # CONFIG_DS1803 is not set
    < # CONFIG_MAX5432 is not set
    < # CONFIG_MAX5481 is not set
    < # CONFIG_MAX5487 is not set
    < # CONFIG_MCP4018 is not set
    < # CONFIG_MCP4131 is not set
    < # CONFIG_MCP4531 is not set
    < # CONFIG_MCP41010 is not set
    < # CONFIG_TPL0102 is not set
    < # end of Digital potentiometers
    < 
    < #
    < # Digital potentiostats
    < #
    < # CONFIG_LMP91000 is not set
    < # end of Digital potentiostats
    < 
    < #
    < # Pressure sensors
    < #
    < # CONFIG_ABP060MG is not set
    < # CONFIG_BMP280 is not set
    < # CONFIG_DLHL60D is not set
    < # CONFIG_DPS310 is not set
    < # CONFIG_HP03 is not set
    < # CONFIG_ICP10100 is not set
    < # CONFIG_MPL115_I2C is not set
    < # CONFIG_MPL115_SPI is not set
    < # CONFIG_MPL3115 is not set
    < # CONFIG_MS5611 is not set
    < # CONFIG_MS5637 is not set
    < # CONFIG_IIO_ST_PRESS is not set
    < # CONFIG_T5403 is not set
    < # CONFIG_HP206C is not set
    < # CONFIG_ZPA2326 is not set
    < # end of Pressure sensors
    < 
    < #
    < # Lightning sensors
    < #
    < # CONFIG_AS3935 is not set
    < # end of Lightning sensors
    < 
    < #
    < # Proximity and distance sensors
    < #
    < # CONFIG_ISL29501 is not set
    < # CONFIG_LIDAR_LITE_V2 is not set
    < # CONFIG_MB1232 is not set
    < # CONFIG_PING is not set
    < # CONFIG_RFD77402 is not set
    < # CONFIG_SRF04 is not set
    < # CONFIG_SX9310 is not set
    < # CONFIG_SX9324 is not set
    < # CONFIG_SX9360 is not set
    < # CONFIG_SX9500 is not set
    < # CONFIG_SRF08 is not set
    < # CONFIG_VCNL3020 is not set
    < # CONFIG_VL53L0X_I2C is not set
    < # end of Proximity and distance sensors
    < 
    < #
    < # Resolver to digital converters
    < #
    < # CONFIG_AD2S90 is not set
    < # CONFIG_AD2S1200 is not set
    < # end of Resolver to digital converters
    < 
    < #
    < # Temperature sensors
    < #
    < # CONFIG_LTC2983 is not set
    < # CONFIG_MAXIM_THERMOCOUPLE is not set
    < # CONFIG_MLX90614 is not set
    < # CONFIG_MLX90632 is not set
    < # CONFIG_TMP006 is not set
    < # CONFIG_TMP007 is not set
    < # CONFIG_TMP117 is not set
    < # CONFIG_TSYS01 is not set
    < # CONFIG_TSYS02D is not set
    < # CONFIG_MAX31856 is not set
    < # CONFIG_MAX31865 is not set
    < # end of Temperature sensors
    < 
    < # CONFIG_NTB is not set
    ---
    > CONFIG_IIO_STM32_LPTIMER_TRIGGER=m
    6615,6616c1218,1219
    < CONFIG_PWM_SYSFS=y
    < # CONFIG_PWM_DEBUG is not set
    ---
    > CONFIG_PWM_ATMEL=m
    > CONFIG_PWM_ATMEL_HLCDC_PWM=m
    6618,6619c1221,1222
    < # CONFIG_PWM_CLK is not set
    < # CONFIG_PWM_DWC is not set
    ---
    > CONFIG_PWM_BCM2835=y
    > CONFIG_PWM_BRCMSTB=m
    6621,6622d1223
    < # CONFIG_PWM_OMAP_DMTIMER is not set
    < # CONFIG_PWM_PCA9685 is not set
    6625,6638c1226,1236
    < # CONFIG_PWM_TWL is not set
    < # CONFIG_PWM_TWL_LED is not set
    < # CONFIG_PWM_XILINX is not set
    < 
    < #
    < # IRQ chip support
    < #
    < CONFIG_IRQCHIP=y
    < CONFIG_ARM_GIC=y
    < CONFIG_ARM_GIC_MAX_NR=1
    < # CONFIG_AL_FIC is not set
    < CONFIG_OMAP_IRQCHIP=y
    < # CONFIG_XILINX_INTC is not set
    < CONFIG_IRQ_CROSSBAR=y
    ---
    > CONFIG_PWM_MESON=m
    > CONFIG_PWM_RCAR=m
    > CONFIG_PWM_RENESAS_TPU=y
    > CONFIG_PWM_ROCKCHIP=m
    > CONFIG_PWM_SAMSUNG=m
    > CONFIG_PWM_STI=y
    > CONFIG_PWM_STM32=m
    > CONFIG_PWM_STM32_LP=m
    > CONFIG_PWM_SUN4I=y
    > CONFIG_PWM_TEGRA=y
    > CONFIG_PWM_VT8500=y
    6640,6669c1238,1245
    < CONFIG_TI_PRUSS_INTC=m
    < # end of IRQ chip support
    < 
    < # CONFIG_IPACK_BUS is not set
    < CONFIG_ARCH_HAS_RESET_CONTROLLER=y
    < CONFIG_RESET_CONTROLLER=y
    < CONFIG_RESET_SCMI=y
    < CONFIG_RESET_SIMPLE=y
    < # CONFIG_RESET_TI_SYSCON is not set
    < # CONFIG_RESET_TI_TPS380X is not set
    < 
    < #
    < # PHY Subsystem
    < #
    < CONFIG_GENERIC_PHY=y
    < # CONFIG_PHY_CAN_TRANSCEIVER is not set
    < 
    < #
    < # PHY drivers for Broadcom platforms
    < #
    < # CONFIG_BCM_KONA_USB2_PHY is not set
    < # end of PHY drivers for Broadcom platforms
    < 
    < # CONFIG_PHY_CADENCE_TORRENT is not set
    < # CONFIG_PHY_CADENCE_DPHY is not set
    < # CONFIG_PHY_CADENCE_DPHY_RX is not set
    < # CONFIG_PHY_CADENCE_SIERRA is not set
    < # CONFIG_PHY_CADENCE_SALVO is not set
    < # CONFIG_PHY_PXA_28NM_HSIC is not set
    < # CONFIG_PHY_PXA_28NM_USB2 is not set
    ---
    > CONFIG_RESET_MCHP_SPARX5=y
    > CONFIG_PHY_SUN4I_USB=y
    > CONFIG_PHY_SUN9I_USB=y
    > CONFIG_PHY_BRCM_USB=m
    > CONFIG_PHY_HIX5HD2_SATA=y
    > CONFIG_PHY_BERLIN_SATA=y
    > CONFIG_PHY_BERLIN_USB=y
    > CONFIG_PHY_MMP3_USB=m
    6672,6673c1248
    < # CONFIG_PHY_MAPPHONE_MDM6600 is not set
    < # CONFIG_PHY_OCELOT_SERDES is not set
    ---
    > CONFIG_PHY_QCOM_APQ8064_SATA=m
    6675c1250,1260
    < # CONFIG_PHY_QCOM_USB_HSIC is not set
    ---
    > CONFIG_PHY_RCAR_GEN2=m
    > CONFIG_PHY_ROCKCHIP_DP=m
    > CONFIG_PHY_ROCKCHIP_USB=y
    > CONFIG_PHY_SAMSUNG_USB2=m
    > CONFIG_PHY_EXYNOS5250_SATA=m
    > CONFIG_PHY_UNIPHIER_USB2=y
    > CONFIG_PHY_UNIPHIER_USB3=y
    > CONFIG_PHY_MIPHY28LP=y
    > CONFIG_PHY_STIH407_USB=y
    > CONFIG_PHY_STM32_USBPHYC=y
    > CONFIG_PHY_TEGRA_XUSB=y
    6677d1261
    < CONFIG_OMAP_CONTROL_PHY=y
    6680,6694c1264
    < # CONFIG_PHY_TUSB1210 is not set
    < CONFIG_PHY_TI_GMII_SEL=y
    < # end of PHY Subsystem
    < 
    < # CONFIG_POWERCAP is not set
    < # CONFIG_MCB is not set
    < 
    < #
    < # Performance monitor support
    < #
    < # CONFIG_ARM_CCI_PMU is not set
    < # CONFIG_ARM_CCN is not set
    < CONFIG_ARM_PMU=y
    < # end of Performance monitor support
    < 
    ---
    > CONFIG_TWL4030_USB=m
    6696,6707c1266,1271
    < # CONFIG_USB4 is not set
    < 
    < #
    < # Android
    < #
    < # CONFIG_ANDROID_BINDER_IPC is not set
    < # end of Android
    < 
    < # CONFIG_LIBNVDIMM is not set
    < # CONFIG_DAX is not set
    < CONFIG_NVMEM=y
    < CONFIG_NVMEM_SYSFS=y
    ---
    > CONFIG_NVMEM_IMX_OCOTP=y
    > CONFIG_NVMEM_QCOM_QFPROM=y
    > CONFIG_NVMEM_ROCKCHIP_EFUSE=m
    > CONFIG_NVMEM_SUNXI_SID=y
    > CONFIG_NVMEM_VF610_OCOTP=y
    > CONFIG_NVMEM_MESON_MX_EFUSE=m
    6709,6719d1272
    < # CONFIG_NVMEM_SPMI_SDAM is not set
    < # CONFIG_NVMEM_U_BOOT_ENV is not set
    < 
    < #
    < # HW tracing support
    < #
    < # CONFIG_STM is not set
    < # CONFIG_INTEL_TH is not set
    < # end of HW tracing support
    < 
    < # CONFIG_FPGA is not set
    6721d1273
    < # CONFIG_FSI_NEW_DEV_NODE is not set
    6728,6732c1280,1281
    < # CONFIG_TEE is not set
    < CONFIG_PM_OPP=y
    < # CONFIG_SIOX is not set
    < # CONFIG_SLIMBUS is not set
    < CONFIG_INTERCONNECT=y
    ---
    > CONFIG_INTERCONNECT_QCOM=y
    > CONFIG_INTERCONNECT_QCOM_MSM8916=y
    6734,6777c1283,1284
    < # CONFIG_INTERRUPT_CNT is not set
    < # CONFIG_TI_EQEP is not set
    < # CONFIG_FTM_QUADDEC is not set
    < # CONFIG_MICROCHIP_TCB_CAPTURE is not set
    < # CONFIG_INTEL_QEP is not set
    < # CONFIG_TI_ECAP_CAPTURE is not set
    < # CONFIG_MOST is not set
    < # CONFIG_PECI is not set
    < # CONFIG_HTE is not set
    < # end of Device Drivers
    < 
    < #
    < # File systems
    < #
    < CONFIG_DCACHE_WORD_ACCESS=y
    < # CONFIG_VALIDATE_FS_PARSER is not set
    < CONFIG_FS_IOMAP=y
    < # CONFIG_EXT2_FS is not set
    < # CONFIG_EXT3_FS is not set
    < CONFIG_EXT4_FS=y
    < CONFIG_EXT4_USE_FOR_EXT2=y
    < # CONFIG_EXT4_FS_POSIX_ACL is not set
    < # CONFIG_EXT4_FS_SECURITY is not set
    < # CONFIG_EXT4_DEBUG is not set
    < CONFIG_JBD2=y
    < # CONFIG_JBD2_DEBUG is not set
    < CONFIG_FS_MBCACHE=y
    < # CONFIG_REISERFS_FS is not set
    < # CONFIG_JFS_FS is not set
    < # CONFIG_XFS_FS is not set
    < # CONFIG_GFS2_FS is not set
    < # CONFIG_OCFS2_FS is not set
    < # CONFIG_BTRFS_FS is not set
    < # CONFIG_NILFS2_FS is not set
    < # CONFIG_F2FS_FS is not set
    < CONFIG_FS_POSIX_ACL=y
    < CONFIG_EXPORTFS=y
    < # CONFIG_EXPORTFS_BLOCK_OPS is not set
    < CONFIG_FILE_LOCKING=y
    < # CONFIG_FS_ENCRYPTION is not set
    < # CONFIG_FS_VERITY is not set
    < CONFIG_FSNOTIFY=y
    < CONFIG_DNOTIFY=y
    < CONFIG_INOTIFY_USER=y
    ---
    > CONFIG_STM32_TIMER_CNT=m
    > CONFIG_STM32_LPTIMER_CNT=m
    6779c1286
    < # CONFIG_QUOTA is not set
    ---
    > CONFIG_EXT4_FS=y
    6781,6801d1287
    < CONFIG_AUTOFS_FS=y
    < # CONFIG_FUSE_FS is not set
    < # CONFIG_OVERLAY_FS is not set
    < 
    < #
    < # Caches
    < #
    < # CONFIG_FSCACHE is not set
    < # end of Caches
    < 
    < #
    < # CD-ROM/DVD Filesystems
    < #
    < # CONFIG_ISO9660_FS is not set
    < # CONFIG_UDF_FS is not set
    < # end of CD-ROM/DVD Filesystems
    < 
    < #
    < # DOS/FAT/EXFAT/NT Filesystems
    < #
    < CONFIG_FAT_FS=y
    6804,6807d1289
    < CONFIG_FAT_DEFAULT_CODEPAGE=437
    < CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    < # CONFIG_FAT_DEFAULT_UTF8 is not set
    < # CONFIG_EXFAT_FS is not set
    6809,6823d1290
    < # CONFIG_NTFS_DEBUG is not set
    < # CONFIG_NTFS_RW is not set
    < # CONFIG_NTFS3_FS is not set
    < # end of DOS/FAT/EXFAT/NT Filesystems
    < 
    < #
    < # Pseudo filesystems
    < #
    < CONFIG_PROC_FS=y
    < CONFIG_PROC_SYSCTL=y
    < CONFIG_PROC_PAGE_MONITOR=y
    < # CONFIG_PROC_CHILDREN is not set
    < CONFIG_KERNFS=y
    < CONFIG_SYSFS=y
    < CONFIG_TMPFS=y
    6825,6843d1291
    < CONFIG_TMPFS_XATTR=y
    < CONFIG_ARCH_SUPPORTS_HUGETLBFS=y
    < # CONFIG_HUGETLBFS is not set
    < CONFIG_MEMFD_CREATE=y
    < CONFIG_CONFIGFS_FS=y
    < CONFIG_EFIVAR_FS=m
    < # end of Pseudo filesystems
    < 
    < CONFIG_MISC_FILESYSTEMS=y
    < # CONFIG_ORANGEFS_FS is not set
    < # CONFIG_ADFS_FS is not set
    < # CONFIG_AFFS_FS is not set
    < # CONFIG_ECRYPT_FS is not set
    < # CONFIG_HFS_FS is not set
    < # CONFIG_HFSPLUS_FS is not set
    < # CONFIG_BEFS_FS is not set
    < # CONFIG_BFS_FS is not set
    < # CONFIG_EFS_FS is not set
    < # CONFIG_JFFS2_FS is not set
    6845,6853d1292
    < # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set
    < CONFIG_UBIFS_FS_LZO=y
    < CONFIG_UBIFS_FS_ZLIB=y
    < CONFIG_UBIFS_FS_ZSTD=y
    < # CONFIG_UBIFS_ATIME_SUPPORT is not set
    < CONFIG_UBIFS_FS_XATTR=y
    < CONFIG_UBIFS_FS_SECURITY=y
    < # CONFIG_UBIFS_FS_AUTHENTICATION is not set
    < # CONFIG_CRAMFS is not set
    6855,6862d1293
    < CONFIG_SQUASHFS_FILE_CACHE=y
    < # CONFIG_SQUASHFS_FILE_DIRECT is not set
    < CONFIG_SQUASHFS_DECOMP_SINGLE=y
    < # CONFIG_SQUASHFS_DECOMP_MULTI is not set
    < # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
    < # CONFIG_SQUASHFS_XATTR is not set
    < CONFIG_SQUASHFS_ZLIB=y
    < # CONFIG_SQUASHFS_LZ4 is not set
    6865,6875d1295
    < # CONFIG_SQUASHFS_ZSTD is not set
    < # CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
    < # CONFIG_SQUASHFS_EMBEDDED is not set
    < CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
    < # CONFIG_VXFS_FS is not set
    < # CONFIG_MINIX_FS is not set
    < # CONFIG_OMFS_FS is not set
    < # CONFIG_HPFS_FS is not set
    < # CONFIG_QNX4FS_FS is not set
    < # CONFIG_QNX6FS_FS is not set
    < # CONFIG_ROMFS_FS is not set
    6877,6886d1296
    < CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240
    < CONFIG_PSTORE_DEFLATE_COMPRESS=y
    < # CONFIG_PSTORE_LZO_COMPRESS is not set
    < # CONFIG_PSTORE_LZ4_COMPRESS is not set
    < # CONFIG_PSTORE_LZ4HC_COMPRESS is not set
    < # CONFIG_PSTORE_842_COMPRESS is not set
    < # CONFIG_PSTORE_ZSTD_COMPRESS is not set
    < CONFIG_PSTORE_COMPRESS=y
    < CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
    < CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
    6890,6894d1299
    < # CONFIG_PSTORE_BLK is not set
    < # CONFIG_SYSV_FS is not set
    < # CONFIG_UFS_FS is not set
    < # CONFIG_EROFS_FS is not set
    < CONFIG_NETWORK_FILESYSTEMS=y
    6896,6897d1300
    < CONFIG_NFS_V2=y
    < CONFIG_NFS_V3=y
    6900d1302
    < # CONFIG_NFS_SWAP is not set
    6903,6906d1304
    < CONFIG_PNFS_FILE_LAYOUT=y
    < CONFIG_PNFS_FLEXFILE_LAYOUT=y
    < CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
    < # CONFIG_NFS_V4_1_MIGRATION is not set
    6908,6929d1305
    < # CONFIG_NFS_USE_LEGACY_DNS is not set
    < CONFIG_NFS_USE_KERNEL_DNS=y
    < CONFIG_NFS_DISABLE_UDP_SUPPORT=y
    < # CONFIG_NFS_V4_2_READ_PLUS is not set
    < # CONFIG_NFSD is not set
    < CONFIG_GRACE_PERIOD=y
    < CONFIG_LOCKD=y
    < CONFIG_LOCKD_V4=y
    < CONFIG_NFS_ACL_SUPPORT=y
    < CONFIG_NFS_COMMON=y
    < CONFIG_NFS_V4_2_SSC_HELPER=y
    < CONFIG_SUNRPC=y
    < CONFIG_SUNRPC_GSS=y
    < CONFIG_SUNRPC_BACKCHANNEL=y
    < # CONFIG_SUNRPC_DEBUG is not set
    < # CONFIG_CEPH_FS is not set
    < # CONFIG_CIFS is not set
    < # CONFIG_SMB_SERVER is not set
    < # CONFIG_CODA_FS is not set
    < # CONFIG_AFS_FS is not set
    < CONFIG_NLS=y
    < CONFIG_NLS_DEFAULT="iso8859-1"
    6931,6953d1306
    < # CONFIG_NLS_CODEPAGE_737 is not set
    < # CONFIG_NLS_CODEPAGE_775 is not set
    < # CONFIG_NLS_CODEPAGE_850 is not set
    < # CONFIG_NLS_CODEPAGE_852 is not set
    < # CONFIG_NLS_CODEPAGE_855 is not set
    < # CONFIG_NLS_CODEPAGE_857 is not set
    < # CONFIG_NLS_CODEPAGE_860 is not set
    < # CONFIG_NLS_CODEPAGE_861 is not set
    < # CONFIG_NLS_CODEPAGE_862 is not set
    < # CONFIG_NLS_CODEPAGE_863 is not set
    < # CONFIG_NLS_CODEPAGE_864 is not set
    < # CONFIG_NLS_CODEPAGE_865 is not set
    < # CONFIG_NLS_CODEPAGE_866 is not set
    < # CONFIG_NLS_CODEPAGE_869 is not set
    < # CONFIG_NLS_CODEPAGE_936 is not set
    < # CONFIG_NLS_CODEPAGE_950 is not set
    < # CONFIG_NLS_CODEPAGE_932 is not set
    < # CONFIG_NLS_CODEPAGE_949 is not set
    < # CONFIG_NLS_CODEPAGE_874 is not set
    < # CONFIG_NLS_ISO8859_8 is not set
    < # CONFIG_NLS_CODEPAGE_1250 is not set
    < # CONFIG_NLS_CODEPAGE_1251 is not set
    < # CONFIG_NLS_ASCII is not set
    6955,6977d1307
    < # CONFIG_NLS_ISO8859_2 is not set
    < # CONFIG_NLS_ISO8859_3 is not set
    < # CONFIG_NLS_ISO8859_4 is not set
    < # CONFIG_NLS_ISO8859_5 is not set
    < # CONFIG_NLS_ISO8859_6 is not set
    < # CONFIG_NLS_ISO8859_7 is not set
    < # CONFIG_NLS_ISO8859_9 is not set
    < # CONFIG_NLS_ISO8859_13 is not set
    < # CONFIG_NLS_ISO8859_14 is not set
    < # CONFIG_NLS_ISO8859_15 is not set
    < # CONFIG_NLS_KOI8_R is not set
    < # CONFIG_NLS_KOI8_U is not set
    < # CONFIG_NLS_MAC_ROMAN is not set
    < # CONFIG_NLS_MAC_CELTIC is not set
    < # CONFIG_NLS_MAC_CENTEURO is not set
    < # CONFIG_NLS_MAC_CROATIAN is not set
    < # CONFIG_NLS_MAC_CYRILLIC is not set
    < # CONFIG_NLS_MAC_GAELIC is not set
    < # CONFIG_NLS_MAC_GREEK is not set
    < # CONFIG_NLS_MAC_ICELAND is not set
    < # CONFIG_NLS_MAC_INUIT is not set
    < # CONFIG_NLS_MAC_ROMANIAN is not set
    < # CONFIG_NLS_MAC_TURKISH is not set
    6979,7046d1308
    < # CONFIG_DLM is not set
    < # CONFIG_UNICODE is not set
    < CONFIG_IO_WQ=y
    < # end of File systems
    < 
    < #
    < # Security options
    < #
    < CONFIG_KEYS=y
    < # CONFIG_KEYS_REQUEST_CACHE is not set
    < # CONFIG_PERSISTENT_KEYRINGS is not set
    < # CONFIG_TRUSTED_KEYS is not set
    < # CONFIG_ENCRYPTED_KEYS is not set
    < # CONFIG_KEY_DH_OPERATIONS is not set
    < # CONFIG_SECURITY_DMESG_RESTRICT is not set
    < CONFIG_PROC_MEM_ALWAYS_FORCE=y
    < # CONFIG_PROC_MEM_FORCE_PTRACE is not set
    < # CONFIG_PROC_MEM_NO_FORCE is not set
    < # CONFIG_SECURITY is not set
    < CONFIG_SECURITYFS=y
    < CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
    < # CONFIG_HARDENED_USERCOPY is not set
    < # CONFIG_FORTIFY_SOURCE is not set
    < # CONFIG_STATIC_USERMODEHELPER is not set
    < CONFIG_DEFAULT_SECURITY_DAC=y
    < CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf"
    < 
    < #
    < # Kernel hardening options
    < #
    < 
    < #
    < # Memory initialization
    < #
    < CONFIG_INIT_STACK_NONE=y
    < # CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
    < # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
    < CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y
    < # CONFIG_ZERO_CALL_USED_REGS is not set
    < # end of Memory initialization
    < 
    < CONFIG_RANDSTRUCT_NONE=y
    < # end of Kernel hardening options
    < # end of Security options
    < 
    < CONFIG_CRYPTO=y
    < 
    < #
    < # Crypto core or helper
    < #
    < CONFIG_CRYPTO_ALGAPI=y
    < CONFIG_CRYPTO_ALGAPI2=y
    < CONFIG_CRYPTO_AEAD=m
    < CONFIG_CRYPTO_AEAD2=y
    < CONFIG_CRYPTO_SKCIPHER=m
    < CONFIG_CRYPTO_SKCIPHER2=y
    < CONFIG_CRYPTO_HASH=y
    < CONFIG_CRYPTO_HASH2=y
    < CONFIG_CRYPTO_RNG=m
    < CONFIG_CRYPTO_RNG2=y
    < CONFIG_CRYPTO_RNG_DEFAULT=m
    < CONFIG_CRYPTO_AKCIPHER2=y
    < CONFIG_CRYPTO_AKCIPHER=y
    < CONFIG_CRYPTO_KPP2=y
    < CONFIG_CRYPTO_KPP=m
    < CONFIG_CRYPTO_ACOMP2=y
    < CONFIG_CRYPTO_MANAGER=y
    < CONFIG_CRYPTO_MANAGER2=y
    7048,7054d1309
    < CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
    < CONFIG_CRYPTO_GF128MUL=m
    < CONFIG_CRYPTO_NULL=m
    < CONFIG_CRYPTO_NULL2=y
    < # CONFIG_CRYPTO_PCRYPT is not set
    < CONFIG_CRYPTO_CRYPTD=m
    < CONFIG_CRYPTO_AUTHENC=m
    7056,7183d1310
    < CONFIG_CRYPTO_SIMD=m
    < CONFIG_CRYPTO_ENGINE=m
    < # end of Crypto core or helper
    < 
    < #
    < # Public-key cryptography
    < #
    < CONFIG_CRYPTO_RSA=y
    < # CONFIG_CRYPTO_DH is not set
    < CONFIG_CRYPTO_ECC=m
    < CONFIG_CRYPTO_ECDH=m
    < # CONFIG_CRYPTO_ECDSA is not set
    < # CONFIG_CRYPTO_ECRDSA is not set
    < # CONFIG_CRYPTO_SM2 is not set
    < # CONFIG_CRYPTO_CURVE25519 is not set
    < # end of Public-key cryptography
    < 
    < #
    < # Block ciphers
    < #
    < CONFIG_CRYPTO_AES=m
    < # CONFIG_CRYPTO_AES_TI is not set
    < # CONFIG_CRYPTO_ANUBIS is not set
    < # CONFIG_CRYPTO_ARIA is not set
    < # CONFIG_CRYPTO_BLOWFISH is not set
    < # CONFIG_CRYPTO_CAMELLIA is not set
    < # CONFIG_CRYPTO_CAST5 is not set
    < # CONFIG_CRYPTO_CAST6 is not set
    < CONFIG_CRYPTO_DES=m
    < # CONFIG_CRYPTO_FCRYPT is not set
    < # CONFIG_CRYPTO_KHAZAD is not set
    < # CONFIG_CRYPTO_SEED is not set
    < # CONFIG_CRYPTO_SERPENT is not set
    < # CONFIG_CRYPTO_SM4_GENERIC is not set
    < # CONFIG_CRYPTO_TEA is not set
    < # CONFIG_CRYPTO_TWOFISH is not set
    < # end of Block ciphers
    < 
    < #
    < # Length-preserving ciphers and modes
    < #
    < # CONFIG_CRYPTO_ADIANTUM is not set
    < # CONFIG_CRYPTO_ARC4 is not set
    < # CONFIG_CRYPTO_CHACHA20 is not set
    < CONFIG_CRYPTO_CBC=m
    < # CONFIG_CRYPTO_CFB is not set
    < CONFIG_CRYPTO_CTR=m
    < # CONFIG_CRYPTO_CTS is not set
    < CONFIG_CRYPTO_ECB=m
    < # CONFIG_CRYPTO_HCTR2 is not set
    < # CONFIG_CRYPTO_KEYWRAP is not set
    < # CONFIG_CRYPTO_LRW is not set
    < # CONFIG_CRYPTO_OFB is not set
    < # CONFIG_CRYPTO_PCBC is not set
    < CONFIG_CRYPTO_XTS=m
    < # end of Length-preserving ciphers and modes
    < 
    < #
    < # AEAD (authenticated encryption with associated data) ciphers
    < #
    < # CONFIG_CRYPTO_AEGIS128 is not set
    < # CONFIG_CRYPTO_CHACHA20POLY1305 is not set
    < CONFIG_CRYPTO_CCM=m
    < CONFIG_CRYPTO_GCM=m
    < CONFIG_CRYPTO_SEQIV=m
    < CONFIG_CRYPTO_ECHAINIV=m
    < # CONFIG_CRYPTO_ESSIV is not set
    < # end of AEAD (authenticated encryption with associated data) ciphers
    < 
    < #
    < # Hashes, digests, and MACs
    < #
    < # CONFIG_CRYPTO_BLAKE2B is not set
    < CONFIG_CRYPTO_CMAC=m
    < CONFIG_CRYPTO_GHASH=m
    < CONFIG_CRYPTO_HMAC=m
    < # CONFIG_CRYPTO_MD4 is not set
    < CONFIG_CRYPTO_MD5=m
    < # CONFIG_CRYPTO_MICHAEL_MIC is not set
    < # CONFIG_CRYPTO_POLY1305 is not set
    < # CONFIG_CRYPTO_RMD160 is not set
    < CONFIG_CRYPTO_SHA1=m
    < CONFIG_CRYPTO_SHA256=m
    < CONFIG_CRYPTO_SHA512=m
    < # CONFIG_CRYPTO_SHA3 is not set
    < # CONFIG_CRYPTO_SM3_GENERIC is not set
    < # CONFIG_CRYPTO_STREEBOG is not set
    < # CONFIG_CRYPTO_VMAC is not set
    < # CONFIG_CRYPTO_WP512 is not set
    < CONFIG_CRYPTO_XCBC=m
    < # CONFIG_CRYPTO_XXHASH is not set
    < # end of Hashes, digests, and MACs
    < 
    < #
    < # CRCs (cyclic redundancy checks)
    < #
    < CONFIG_CRYPTO_CRC32C=y
    < # CONFIG_CRYPTO_CRC32 is not set
    < # CONFIG_CRYPTO_CRCT10DIF is not set
    < # end of CRCs (cyclic redundancy checks)
    < 
    < #
    < # Compression
    < #
    < CONFIG_CRYPTO_DEFLATE=y
    < CONFIG_CRYPTO_LZO=y
    < # CONFIG_CRYPTO_842 is not set
    < # CONFIG_CRYPTO_LZ4 is not set
    < # CONFIG_CRYPTO_LZ4HC is not set
    < CONFIG_CRYPTO_ZSTD=y
    < # end of Compression
    < 
    < #
    < # Random number generation
    < #
    < # CONFIG_CRYPTO_ANSI_CPRNG is not set
    < CONFIG_CRYPTO_DRBG_MENU=m
    < CONFIG_CRYPTO_DRBG_HMAC=y
    < # CONFIG_CRYPTO_DRBG_HASH is not set
    < # CONFIG_CRYPTO_DRBG_CTR is not set
    < CONFIG_CRYPTO_DRBG=m
    < CONFIG_CRYPTO_JITTERENTROPY=m
    < # end of Random number generation
    < 
    < #
    < # Userspace interface
    < #
    < CONFIG_CRYPTO_USER_API=m
    7187d1313
    < # CONFIG_CRYPTO_USER_API_RNG_CAVP is not set
    7189,7217c1315,1328
    < CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE=y
    < # CONFIG_CRYPTO_STATS is not set
    < # end of Userspace interface
    < 
    < CONFIG_CRYPTO_HASH_INFO=y
    < 
    < #
    < # Accelerated Cryptographic Algorithms for CPU (arm)
    < #
    < # CONFIG_CRYPTO_CURVE25519_NEON is not set
    < CONFIG_CRYPTO_GHASH_ARM_CE=m
    < # CONFIG_CRYPTO_NHPOLY1305_NEON is not set
    < # CONFIG_CRYPTO_POLY1305_ARM is not set
    < # CONFIG_CRYPTO_BLAKE2S_ARM is not set
    < # CONFIG_CRYPTO_BLAKE2B_NEON is not set
    < CONFIG_CRYPTO_SHA1_ARM=m
    < CONFIG_CRYPTO_SHA1_ARM_NEON=m
    < CONFIG_CRYPTO_SHA1_ARM_CE=m
    < CONFIG_CRYPTO_SHA2_ARM_CE=m
    < CONFIG_CRYPTO_SHA256_ARM=m
    < CONFIG_CRYPTO_SHA512_ARM=m
    < CONFIG_CRYPTO_AES_ARM=m
    < CONFIG_CRYPTO_AES_ARM_BS=m
    < CONFIG_CRYPTO_AES_ARM_CE=m
    < CONFIG_CRYPTO_CHACHA20_NEON=m
    < CONFIG_CRYPTO_CRC32_ARM_CE=m
    < # end of Accelerated Cryptographic Algorithms for CPU (arm)
    < 
    < CONFIG_CRYPTO_HW=y
    ---
    > CONFIG_CRYPTO_DEV_SUN4I_SS=m
    > CONFIG_CRYPTO_DEV_FSL_CAAM=m
    > CONFIG_CRYPTO_DEV_EXYNOS_RNG=m
    > CONFIG_CRYPTO_DEV_S5P=m
    > CONFIG_CRYPTO_DEV_ATMEL_AES=m
    > CONFIG_CRYPTO_DEV_ATMEL_TDES=m
    > CONFIG_CRYPTO_DEV_ATMEL_SHA=m
    > CONFIG_CRYPTO_DEV_MARVELL_CESA=m
    > CONFIG_CRYPTO_DEV_QCE=m
    > CONFIG_CRYPTO_DEV_QCOM_RNG=m
    > CONFIG_CRYPTO_DEV_ROCKCHIP=m
    > CONFIG_CRYPTO_DEV_STM32_CRC=m
    > CONFIG_CRYPTO_DEV_STM32_HASH=m
    > CONFIG_CRYPTO_DEV_STM32_CRYP=m
    7222,7360d1332
    < # CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
    < # CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
    < # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
    < # CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
    < # CONFIG_CRYPTO_DEV_QAT_C62X is not set
    < # CONFIG_CRYPTO_DEV_QAT_4XXX is not set
    < # CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
    < # CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
    < # CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
    < # CONFIG_CRYPTO_DEV_VIRTIO is not set
    < # CONFIG_CRYPTO_DEV_SAFEXCEL is not set
    < # CONFIG_CRYPTO_DEV_CCREE is not set
    < CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m
    < # CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set
    < CONFIG_ASYMMETRIC_KEY_TYPE=y
    < CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
    < CONFIG_X509_CERTIFICATE_PARSER=y
    < # CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
    < CONFIG_PKCS7_MESSAGE_PARSER=y
    < # CONFIG_PKCS7_TEST_KEY is not set
    < # CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
    < # CONFIG_FIPS_SIGNATURE_SELFTEST is not set
    < 
    < #
    < # Certificates for signature checking
    < #
    < CONFIG_SYSTEM_TRUSTED_KEYRING=y
    < CONFIG_SYSTEM_TRUSTED_KEYS=""
    < # CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
    < # CONFIG_SECONDARY_TRUSTED_KEYRING is not set
    < # CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
    < # end of Certificates for signature checking
    < 
    < CONFIG_BINARY_PRINTF=y
    < 
    < #
    < # Library routines
    < #
    < CONFIG_LINEAR_RANGES=y
    < CONFIG_PACKING=y
    < CONFIG_BITREVERSE=y
    < CONFIG_HAVE_ARCH_BITREVERSE=y
    < CONFIG_GENERIC_STRNCPY_FROM_USER=y
    < CONFIG_GENERIC_STRNLEN_USER=y
    < CONFIG_GENERIC_NET_UTILS=y
    < # CONFIG_CORDIC is not set
    < # CONFIG_PRIME_NUMBERS is not set
    < CONFIG_RATIONAL=y
    < CONFIG_GENERIC_PCI_IOMAP=y
    < CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
    < 
    < #
    < # Crypto library routines
    < #
    < CONFIG_CRYPTO_LIB_UTILS=y
    < CONFIG_CRYPTO_LIB_AES=m
    < CONFIG_CRYPTO_LIB_ARC4=m
    < CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y
    < CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m
    < # CONFIG_CRYPTO_LIB_CHACHA is not set
    < # CONFIG_CRYPTO_LIB_CURVE25519 is not set
    < CONFIG_CRYPTO_LIB_DES=m
    < CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9
    < # CONFIG_CRYPTO_LIB_POLY1305 is not set
    < # CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
    < CONFIG_CRYPTO_LIB_SHA1=y
    < CONFIG_CRYPTO_LIB_SHA256=m
    < # end of Crypto library routines
    < 
    < CONFIG_CRC_CCITT=m
    < CONFIG_CRC16=y
    < # CONFIG_CRC_T10DIF is not set
    < # CONFIG_CRC64_ROCKSOFT is not set
    < CONFIG_CRC_ITU_T=m
    < CONFIG_CRC32=y
    < # CONFIG_CRC32_SELFTEST is not set
    < CONFIG_CRC32_SLICEBY8=y
    < # CONFIG_CRC32_SLICEBY4 is not set
    < # CONFIG_CRC32_SARWATE is not set
    < # CONFIG_CRC32_BIT is not set
    < # CONFIG_CRC64 is not set
    < CONFIG_CRC4=m
    < # CONFIG_CRC7 is not set
    < # CONFIG_LIBCRC32C is not set
    < # CONFIG_CRC8 is not set
    < CONFIG_XXHASH=y
    < # CONFIG_RANDOM32_SELFTEST is not set
    < CONFIG_ZLIB_INFLATE=y
    < CONFIG_ZLIB_DEFLATE=y
    < CONFIG_LZO_COMPRESS=y
    < CONFIG_LZO_DECOMPRESS=y
    < CONFIG_LZ4_DECOMPRESS=y
    < CONFIG_ZSTD_COMMON=y
    < CONFIG_ZSTD_COMPRESS=y
    < CONFIG_ZSTD_DECOMPRESS=y
    < CONFIG_XZ_DEC=y
    < CONFIG_XZ_DEC_X86=y
    < CONFIG_XZ_DEC_POWERPC=y
    < CONFIG_XZ_DEC_IA64=y
    < CONFIG_XZ_DEC_ARM=y
    < CONFIG_XZ_DEC_ARMTHUMB=y
    < CONFIG_XZ_DEC_SPARC=y
    < # CONFIG_XZ_DEC_MICROLZMA is not set
    < CONFIG_XZ_DEC_BCJ=y
    < # CONFIG_XZ_DEC_TEST is not set
    < CONFIG_DECOMPRESS_GZIP=y
    < CONFIG_DECOMPRESS_BZIP2=y
    < CONFIG_DECOMPRESS_LZMA=y
    < CONFIG_DECOMPRESS_XZ=y
    < CONFIG_DECOMPRESS_LZO=y
    < CONFIG_DECOMPRESS_LZ4=y
    < CONFIG_DECOMPRESS_ZSTD=y
    < CONFIG_GENERIC_ALLOCATOR=y
    < CONFIG_REED_SOLOMON=y
    < CONFIG_REED_SOLOMON_ENC8=y
    < CONFIG_REED_SOLOMON_DEC8=y
    < CONFIG_BCH=y
    < CONFIG_XARRAY_MULTI=y
    < CONFIG_ASSOCIATIVE_ARRAY=y
    < CONFIG_HAS_IOMEM=y
    < CONFIG_HAS_IOPORT_MAP=y
    < CONFIG_HAS_DMA=y
    < CONFIG_DMA_OPS=y
    < CONFIG_NEED_DMA_MAP_STATE=y
    < CONFIG_ARCH_DMA_ADDR_T_64BIT=y
    < CONFIG_DMA_DECLARE_COHERENT=y
    < CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
    < CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y
    < CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
    < CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y
    < CONFIG_SWIOTLB=y
    < # CONFIG_DMA_RESTRICTED_POOL is not set
    < CONFIG_DMA_NONCOHERENT_MMAP=y
    < CONFIG_DMA_CMA=y
    < # CONFIG_DMA_PERNUMA_CMA is not set
    < 
    < #
    < # Default contiguous memory area size:
    < #
    7362,7404d1333
    < CONFIG_CMA_SIZE_SEL_MBYTES=y
    < # CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
    < # CONFIG_CMA_SIZE_SEL_MIN is not set
    < # CONFIG_CMA_SIZE_SEL_MAX is not set
    < CONFIG_CMA_ALIGNMENT=8
    < # CONFIG_DMA_API_DEBUG is not set
    < # CONFIG_DMA_MAP_BENCHMARK is not set
    < CONFIG_SGL_ALLOC=y
    < # CONFIG_FORCE_NR_CPUS is not set
    < CONFIG_CPU_RMAP=y
    < CONFIG_DQL=y
    < CONFIG_GLOB=y
    < # CONFIG_GLOB_SELFTEST is not set
    < CONFIG_NLATTR=y
    < CONFIG_CLZ_TAB=y
    < # CONFIG_IRQ_POLL is not set
    < CONFIG_MPILIB=y
    < CONFIG_DIMLIB=y
    < CONFIG_LIBFDT=y
    < CONFIG_OID_REGISTRY=y
    < CONFIG_UCS2_STRING=y
    < CONFIG_HAVE_GENERIC_VDSO=y
    < CONFIG_GENERIC_GETTIMEOFDAY=y
    < CONFIG_GENERIC_VDSO_32=y
    < CONFIG_FONT_SUPPORT=y
    < # CONFIG_FONTS is not set
    < CONFIG_FONT_8x8=y
    < CONFIG_FONT_8x16=y
    < CONFIG_SG_SPLIT=y
    < CONFIG_SG_POOL=y
    < CONFIG_STACKDEPOT=y
    < CONFIG_SBITMAP=y
    < # end of Library routines
    < 
    < CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y
    < 
    < #
    < # Kernel hacking
    < #
    < 
    < #
    < # printk and dmesg options
    < #
    7406,7441d1334
    < # CONFIG_PRINTK_CALLER is not set
    < # CONFIG_STACKTRACE_BUILD_ID is not set
    < CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
    < CONFIG_CONSOLE_LOGLEVEL_QUIET=4
    < CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
    < # CONFIG_BOOT_PRINTK_DELAY is not set
    < # CONFIG_DYNAMIC_DEBUG is not set
    < # CONFIG_DYNAMIC_DEBUG_CORE is not set
    < CONFIG_SYMBOLIC_ERRNAME=y
    < CONFIG_DEBUG_BUGVERBOSE=y
    < # end of printk and dmesg options
    < 
    < CONFIG_DEBUG_KERNEL=y
    < CONFIG_DEBUG_MISC=y
    < 
    < #
    < # Compile-time checks and compiler options
    < #
    < CONFIG_AS_HAS_NON_CONST_LEB128=y
    < CONFIG_DEBUG_INFO_NONE=y
    < # CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set
    < # CONFIG_DEBUG_INFO_DWARF4 is not set
    < # CONFIG_DEBUG_INFO_DWARF5 is not set
    < CONFIG_FRAME_WARN=1024
    < # CONFIG_STRIP_ASM_SYMS is not set
    < # CONFIG_READABLE_ASM is not set
    < # CONFIG_HEADERS_INSTALL is not set
    < # CONFIG_DEBUG_SECTION_MISMATCH is not set
    < CONFIG_SECTION_MISMATCH_WARN_ONLY=y
    < # CONFIG_VMLINUX_MAP is not set
    < # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
    < # end of Compile-time checks and compiler options
    < 
    < #
    < # Generic Kernel Debugging Instruments
    < #
    7443,7445d1335
    < CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
    < CONFIG_MAGIC_SYSRQ_SERIAL=y
    < CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
    7447,7695c1337,1342
    < CONFIG_DEBUG_FS_ALLOW_ALL=y
    < # CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
    < # CONFIG_DEBUG_FS_ALLOW_NONE is not set
    < CONFIG_HAVE_ARCH_KGDB=y
    < # CONFIG_KGDB is not set
    < # CONFIG_UBSAN is not set
    < CONFIG_HAVE_KCSAN_COMPILER=y
    < # end of Generic Kernel Debugging Instruments
    < 
    < #
    < # Networking Debugging
    < #
    < # CONFIG_NET_DEV_REFCNT_TRACKER is not set
    < # CONFIG_NET_NS_REFCNT_TRACKER is not set
    < # CONFIG_DEBUG_NET is not set
    < # end of Networking Debugging
    < 
    < #
    < # Memory Debugging
    < #
    < # CONFIG_PAGE_EXTENSION is not set
    < # CONFIG_DEBUG_PAGEALLOC is not set
    < CONFIG_SLUB_DEBUG=y
    < # CONFIG_SLUB_DEBUG_ON is not set
    < # CONFIG_PAGE_OWNER is not set
    < # CONFIG_PAGE_POISONING is not set
    < # CONFIG_DEBUG_PAGE_REF is not set
    < # CONFIG_DEBUG_RODATA_TEST is not set
    < # CONFIG_DEBUG_WX is not set
    < # CONFIG_DEBUG_OBJECTS is not set
    < # CONFIG_SHRINKER_DEBUG is not set
    < CONFIG_HAVE_DEBUG_KMEMLEAK=y
    < # CONFIG_DEBUG_KMEMLEAK is not set
    < # CONFIG_DEBUG_STACK_USAGE is not set
    < # CONFIG_SCHED_STACK_END_CHECK is not set
    < # CONFIG_DEBUG_VM is not set
    < CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
    < # CONFIG_DEBUG_VIRTUAL is not set
    < # CONFIG_DEBUG_MEMORY_INIT is not set
    < # CONFIG_DEBUG_PER_CPU_MAPS is not set
    < # CONFIG_DEBUG_KMAP_LOCAL is not set
    < # CONFIG_DEBUG_HIGHMEM is not set
    < CONFIG_HAVE_ARCH_KASAN=y
    < CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
    < CONFIG_CC_HAS_KASAN_GENERIC=y
    < CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
    < # CONFIG_KASAN is not set
    < CONFIG_HAVE_ARCH_KFENCE=y
    < # CONFIG_KFENCE is not set
    < # end of Memory Debugging
    < 
    < # CONFIG_DEBUG_SHIRQ is not set
    < 
    < #
    < # Debug Oops, Lockups and Hangs
    < #
    < # CONFIG_PANIC_ON_OOPS is not set
    < CONFIG_PANIC_ON_OOPS_VALUE=0
    < CONFIG_PANIC_TIMEOUT=0
    < # CONFIG_SOFTLOCKUP_DETECTOR is not set
    < # CONFIG_DETECT_HUNG_TASK is not set
    < # CONFIG_WQ_WATCHDOG is not set
    < # CONFIG_TEST_LOCKUP is not set
    < # end of Debug Oops, Lockups and Hangs
    < 
    < #
    < # Scheduler Debugging
    < #
    < CONFIG_SCHED_DEBUG=y
    < # CONFIG_SCHEDSTATS is not set
    < # end of Scheduler Debugging
    < 
    < # CONFIG_DEBUG_TIMEKEEPING is not set
    < # CONFIG_DEBUG_PREEMPT is not set
    < 
    < #
    < # Lock Debugging (spinlocks, mutexes, etc...)
    < #
    < CONFIG_LOCK_DEBUGGING_SUPPORT=y
    < # CONFIG_PROVE_LOCKING is not set
    < # CONFIG_LOCK_STAT is not set
    < # CONFIG_DEBUG_RT_MUTEXES is not set
    < # CONFIG_DEBUG_SPINLOCK is not set
    < # CONFIG_DEBUG_MUTEXES is not set
    < # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
    < # CONFIG_DEBUG_RWSEMS is not set
    < # CONFIG_DEBUG_LOCK_ALLOC is not set
    < # CONFIG_DEBUG_ATOMIC_SLEEP is not set
    < # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
    < # CONFIG_LOCK_TORTURE_TEST is not set
    < # CONFIG_WW_MUTEX_SELFTEST is not set
    < # CONFIG_SCF_TORTURE_TEST is not set
    < # end of Lock Debugging (spinlocks, mutexes, etc...)
    < 
    < # CONFIG_DEBUG_IRQFLAGS is not set
    < CONFIG_STACKTRACE=y
    < # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
    < # CONFIG_DEBUG_KOBJECT is not set
    < 
    < #
    < # Debug kernel data structures
    < #
    < # CONFIG_DEBUG_LIST is not set
    < # CONFIG_DEBUG_PLIST is not set
    < # CONFIG_DEBUG_SG is not set
    < # CONFIG_DEBUG_NOTIFIERS is not set
    < # CONFIG_BUG_ON_DATA_CORRUPTION is not set
    < # CONFIG_DEBUG_MAPLE_TREE is not set
    < # end of Debug kernel data structures
    < 
    < # CONFIG_DEBUG_CREDENTIALS is not set
    < 
    < #
    < # RCU Debugging
    < #
    < # CONFIG_RCU_SCALE_TEST is not set
    < # CONFIG_RCU_TORTURE_TEST is not set
    < # CONFIG_RCU_REF_SCALE_TEST is not set
    < CONFIG_RCU_CPU_STALL_TIMEOUT=21
    < CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0
    < CONFIG_RCU_TRACE=y
    < # CONFIG_RCU_EQS_DEBUG is not set
    < # end of RCU Debugging
    < 
    < # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
    < # CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
    < # CONFIG_LATENCYTOP is not set
    < CONFIG_NOP_TRACER=y
    < CONFIG_HAVE_FUNCTION_TRACER=y
    < CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
    < CONFIG_HAVE_DYNAMIC_FTRACE=y
    < CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
    < CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
    < CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
    < CONFIG_HAVE_C_RECORDMCOUNT=y
    < CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y
    < CONFIG_TRACE_CLOCK=y
    < CONFIG_RING_BUFFER=y
    < CONFIG_EVENT_TRACING=y
    < CONFIG_CONTEXT_SWITCH_TRACER=y
    < CONFIG_TRACING=y
    < CONFIG_TRACING_SUPPORT=y
    < CONFIG_FTRACE=y
    < # CONFIG_BOOTTIME_TRACING is not set
    < # CONFIG_FUNCTION_TRACER is not set
    < # CONFIG_STACK_TRACER is not set
    < # CONFIG_IRQSOFF_TRACER is not set
    < # CONFIG_PREEMPT_TRACER is not set
    < # CONFIG_SCHED_TRACER is not set
    < # CONFIG_HWLAT_TRACER is not set
    < # CONFIG_OSNOISE_TRACER is not set
    < # CONFIG_TIMERLAT_TRACER is not set
    < # CONFIG_ENABLE_DEFAULT_TRACERS is not set
    < # CONFIG_FTRACE_SYSCALLS is not set
    < # CONFIG_TRACER_SNAPSHOT is not set
    < CONFIG_BRANCH_PROFILE_NONE=y
    < # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
    < # CONFIG_PROFILE_ALL_BRANCHES is not set
    < # CONFIG_BLK_DEV_IO_TRACE is not set
    < CONFIG_UPROBE_EVENTS=y
    < CONFIG_DYNAMIC_EVENTS=y
    < CONFIG_PROBE_EVENTS=y
    < # CONFIG_SYNTH_EVENTS is not set
    < # CONFIG_HIST_TRIGGERS is not set
    < # CONFIG_TRACE_EVENT_INJECT is not set
    < # CONFIG_TRACEPOINT_BENCHMARK is not set
    < # CONFIG_RING_BUFFER_BENCHMARK is not set
    < # CONFIG_TRACE_EVAL_MAP_FILE is not set
    < # CONFIG_RING_BUFFER_STARTUP_TEST is not set
    < # CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set
    < # CONFIG_PREEMPTIRQ_DELAY_TEST is not set
    < # CONFIG_RV is not set
    < # CONFIG_SAMPLES is not set
    < # CONFIG_STRICT_DEVMEM is not set
    < 
    < #
    < # arm Debugging
    < #
    < # CONFIG_ARM_PTDUMP_DEBUGFS is not set
    < # CONFIG_UNWINDER_FRAME_POINTER is not set
    < CONFIG_UNWINDER_ARM=y
    < CONFIG_ARM_UNWIND=y
    < # CONFIG_BACKTRACE_VERBOSE is not set
    < # CONFIG_DEBUG_USER is not set
    < # CONFIG_DEBUG_LL is not set
    < CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
    < CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
    < # CONFIG_PID_IN_CONTEXTIDR is not set
    < # CONFIG_CORESIGHT is not set
    < # end of arm Debugging
    < 
    < #
    < # Kernel Testing and Coverage
    < #
    < # CONFIG_KUNIT is not set
    < # CONFIG_NOTIFIER_ERROR_INJECTION is not set
    < # CONFIG_FAULT_INJECTION is not set
    < CONFIG_ARCH_HAS_KCOV=y
    < CONFIG_CC_HAS_SANCOV_TRACE_PC=y
    < # CONFIG_KCOV is not set
    < CONFIG_RUNTIME_TESTING_MENU=y
    < # CONFIG_LKDTM is not set
    < # CONFIG_TEST_MIN_HEAP is not set
    < # CONFIG_TEST_DIV64 is not set
    < # CONFIG_BACKTRACE_SELF_TEST is not set
    < # CONFIG_TEST_REF_TRACKER is not set
    < # CONFIG_RBTREE_TEST is not set
    < # CONFIG_REED_SOLOMON_TEST is not set
    < # CONFIG_INTERVAL_TREE_TEST is not set
    < # CONFIG_PERCPU_TEST is not set
    < # CONFIG_ATOMIC64_SELFTEST is not set
    < # CONFIG_TEST_HEXDUMP is not set
    < # CONFIG_STRING_SELFTEST is not set
    < # CONFIG_TEST_STRING_HELPERS is not set
    < # CONFIG_TEST_STRSCPY is not set
    < # CONFIG_TEST_KSTRTOX is not set
    < # CONFIG_TEST_PRINTF is not set
    < # CONFIG_TEST_SCANF is not set
    < # CONFIG_TEST_BITMAP is not set
    < # CONFIG_TEST_UUID is not set
    < # CONFIG_TEST_XARRAY is not set
    < # CONFIG_TEST_MAPLE_TREE is not set
    < # CONFIG_TEST_RHASHTABLE is not set
    < # CONFIG_TEST_SIPHASH is not set
    < # CONFIG_TEST_IDA is not set
    < # CONFIG_TEST_LKM is not set
    < # CONFIG_TEST_BITOPS is not set
    < # CONFIG_TEST_VMALLOC is not set
    < # CONFIG_TEST_USER_COPY is not set
    < # CONFIG_TEST_BPF is not set
    < # CONFIG_TEST_BLACKHOLE_DEV is not set
    < # CONFIG_FIND_BIT_BENCHMARK is not set
    < # CONFIG_TEST_FIRMWARE is not set
    < # CONFIG_TEST_SYSCTL is not set
    < # CONFIG_TEST_UDELAY is not set
    < # CONFIG_TEST_STATIC_KEYS is not set
    < # CONFIG_TEST_KMOD is not set
    < # CONFIG_TEST_MEMCAT_P is not set
    < # CONFIG_TEST_MEMINIT is not set
    < # CONFIG_TEST_FREE_PAGES is not set
    < CONFIG_ARCH_USE_MEMTEST=y
    < # CONFIG_MEMTEST is not set
    < # end of Kernel Testing and Coverage
    < 
    < #
    < # Rust hacking
    < #
    < # end of Rust hacking
    < # end of Kernel hacking
    ---
    > CONFIG_SPI_TI_QSPI=y
    > CONFIG_CAN_C_CAN=m
    > CONFIG_CAN_C_CAN_PLATFORM=m
    > CONFIG_TI_DSS6=y
    > CONFIG_OMAP2_DSS=y
    > CONFIG_DRM_OMAP_NUM_CRTCS=2



    Also please the changes in the am57xx-beagle-x15-common.dtsi file:-


    -------------- arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi ---------------
    index f08a1c54c..f84f31324 100644
    @@ -18,7 +18,8 @@ aliases {
    rtc0 = &mcp_rtc;
    rtc1 = &tps659038_rtc;
    rtc2 = &rtc;
    - display0 = &hdmi0;
    + display0 = "/display";
    + display1 = "/connector";
    };
    
    chosen {
    @@ -193,6 +194,47 @@ tpd12s015_out: endpoint {
    };
    };
    
    + //[00] LCD Device entry
    +
    + lcd0: display {
    + compatible = "bolymin,btz070f-chc" ,"panel-dpi";
    + //compatible = "osddisplays,osd070t1718-19ts" ,"panel-dpi";
    + backlight = <&lcd_bl>;
    + enable-gpios = <&gpio5 12 GPIO_ACTIVE_HIGH>;
    + attr-gpios = <&gpio7 14 GPIO_ACTIVE_HIGH>; //LCD GPIO [AKSHI] changed in VIC2
    + label = "lcd";
    +
    + /*panel-timing {
    + clock-frequency = <51200000>;
    + de-active = <1>;
    + hactive = <1024>;
    + hback-porch = <12>;
    + hfront-porch = <85>;
    + hsync-active = <0>;
    + hsync-len = <8>;
    + pixelclk-active = <1>;
    + vactive = <600>;
    + vback-porch = <12>;
    + vfront-porch = <12>;
    + vsync-active = <0>;
    + vsync-len = <8>;
    + };*/
    +
    + port {
    + lcd_in: endpoint {
    + remote-endpoint = <&dpi_out>;
    + };
    + };
    + };
    +
    + lcd_bl: backlight {
    + compatible = "pwm-backlight";
    + brightness-levels = <0 32 64 96 128 160 192 255>;
    + default-brightness-level = <8>;
    + pwms = <&ehrpwm0 0 50000 0>;
    + };
    +
    +
    sound0: sound0 {
    compatible = "simple-audio-card";
    simple-audio-card,name = "BeagleBoard-X15";
    @@ -435,6 +477,29 @@ mcp_rtc: rtc@6f {
    };
    };
    
    +/* [00] :: Added Touch panel entries */
    +&i2c5 {
    + status = "okay";
    + clock-frequency = <400000>;
    +
    + polytouch: edt-ft5x06@38 {
    + compatible = "edt,edt-ft5x06";
    + reg = <0x38>;
    + attb-gpio = <&gpio5 9 GPIO_ACTIVE_HIGH>;
    + interrupt-parent = <&gpio5>;
    + interrupts = <9 0>;
    + //reset-gpios = <&gpio5 25 GPIO_ACTIVE_LOW>;
    + //wake-gpios = <&gpio2 21 GPIO_ACTIVE_HIGH>;
    +/* AKSHI*/
    + threshold = <20>;
    + touchscreen-size-x = <1024>;
    + touchscreen-size-y = <600>;
    + wakeup-source;
    + };
    +
    +};
    +
    +
    &gpio7_target {
    ti,no-reset-on-init;
    ti,no-idle-on-init;
    @@ -581,9 +646,20 @@ map0 {
    };
    
    &dss {
    - status = "okay";
    -
    - vdda_video-supply = <&ldoln_reg>;
    + status = "ok";
    + vdda_video-supply = <&ldoln_reg>;
    + ports {
    + #address-cells = <1>;
    + #size-cells = <0>;
    +
    + port {
    + reg = <0>;
    + dpi_out: endpoint {
    + data-lines = <24>;
    + remote-endpoint = <&lcd_in>;
    + };
    + };
    + };
    };
    
    &hdmi {


  • Vishal,

    We do not have this LCD component so we cannot test.

    Are you able to boot the default SDK with your board and see if DRM comes up?

    Can you share a boot log of the unmodified and then the modified boot log?

    Have you checked if the new SDK has more CONFIG dependencies now that you might be missing?

    Just from a look at the menuconfig for bot I can see some differences that you can look into like the OMAP_DRM config was built in in 6.03 and is now a module in 9.03:

    I could not find OMAP-DRM in your config file.

    -Josue

  • Josue,

    We are able to boot the AM5728 EVM with the default SDK 9.03 based SD card, and we have successfully verified the DRM using the modetest utility and boot prints. However, we are facing an issue in enabling the OMAP DRM module in both the 6.03 and 9.03 SDKs using menuconfig

    Although we have enabled CONFIG_DRM_OMAP=y along with other relevant DRM_ configurations in the .config files of both SDKs (based on ti-processor-sdk-linux-am57xx-evm-06.03.00.106 and ti-processor-sdk-linux-am57xx-evm-09_03_06_05 respectively), we are unable to see the OMAP DRM module in menuconfig.

    We have verified that the .config files used for the 6.03 SDK are based on the ti-processor-sdk-linux-am57xx-evm-06.03.00.106/board-support/linux-4.19.94+gitAUTOINC+be5389fd85-gbe5389fd85/arch/arm/configs/tisdk_am57xx-evm_defconfig and for the 9.03 SDK are based on ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/configs/multi_v7_defconfig.

    Moreover, we have created the 9.03 SDK-based SD card using the create-sd-card.sh script, which creates a valid SD card with the required kernel, DTB, and rootfs. However, we are unsure about the .config file used to generate the kernel image for the AM5728 EVM.

    Could you please provide us with the corresponding .config file for the AM5728 EVM or directly inform us about the missing modules that need to be enabled in order for the OMAP DRM module to work?

    We would appreciate any guidance or further clarification on this matter.

    Thank you for your time and assistance.

  • Vishal,

    I am confused with your process and tests.. OMAP_DRM is included by default in both SDKs. Which you are confirming here: 

    We are able to boot the AM5728 EVM with the default SDK 9.03 based SD card, and we have successfully verified the DRM using the modetest utility and boot prints.

    Then you say that you have problems adding it.. to both SDKs? I thought SDK 6.03 was the working case and you were having issues with 9.03 only, can you please clarify?

    If you make linux from the top SDK directory then you will see what the default configuration is:

    josue@jz-ws:~/data/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05$ make linux
    =====================================
    Building the Linux Kernel DTBs
    =====================================
    make -C /mnt/4a1d5549-6f29-46e7-aaf3-d2815c00be93/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti ARCH=arm CROSS_COMPILE=/mnt/4a1d5549-6f29-46e7-aaf3-d2815c00be93/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-oe-linux-gnueabi/arm-oe-linux-gnueabi- defconfig ti_multi_v7_prune.config
    make[1]: Entering directory '/mnt/4a1d5549-6f29-46e7-aaf3-d2815c00be93/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti'
    *** Default configuration is based on 'multi_v7_defconfig'
    arch/arm/configs/multi_v7_defconfig:938:warning: override: reassigning to symbol USB_ETH
    #
    # configuration written to .config
    #
    Using .config as base
    Merging ./kernel/configs/ti_multi_v7_prune.config
    Value of CONFIG_ARCH_ACTIONS is redefined by fragment ./kernel/configs/ti_multi_v7_prune.config:
    Previous value: CONFIG_ARCH_ACTIONS=y
    New value: CONFIG_ARCH_ACTIONS=n
    
    .
    .
    .
    .
     
    *** Default configuration is based on 'multi_v7_defconfig'

    -Josue

  • Josue,

    Then you say that you have problems adding it.. to both SDKs? I thought SDK 6.03 was the working case and you were having issues with 9.03 only, can you please clarify?
    Yes of course the issue is with 9.03 SDK only as I am porting 9.03 SDK on our custom board.

    I've noticed that the DRM driver is enabled in both the SDKs' .config files, but when I run make menuconfig on each, the option to disable or convert it to a kernel module (m) is not available (I can't see the OMAP DRM menu as shown in the image below). This requires manually editing the .config file, which doesn't automatically update its dependencies like menuconfig does.


    The issue I'm facing is with the OMAP DRM driver. It's working as expected on the AM5728 EVM board, but for my custom AM5728-based board running the 9.03 SDK, it doesn't get initialized despite having a .config file based on multi_v7_defconfig. That's why I was hoping to obtain a working .config file specific to the AM5728 EVM (which has omapdrm working fine)which i can use for my custom board.
    In short, just let me know which all CONFIG_DRM_ values need to be set to "y" in .config file so that omapdrm works fine on my custom board. May be certain related CONFIG_DRM_ values (which I am not aware of )are not enabled in my .config which are needed to make omapdrm work. 
    Hope you got my point !

     
  • Vishal,

    Within my AM57 Linux SDK I can see it set up as a module. This is what I do:

    export ARCH=arm
    export CROSS_COMPILE=...
    make menuconfig

    Then I navigate to Device Drivers -> Graphics Support I see it there as a module as I mentioned above

    Building Linux from the top level SDK builds the driver:

      

    and upon boot the driver module has been loaded:

    root@am57xx-evm:~# lsmod | grep omapdrm
    omapdrm               184320  6
    cec                    40960  1 omapdrm

    For the dependencies you can see them under help in menuconfig or the Kconfig file in the driver directory ./drivers/gpu/drm/omapdrm/Kconfig

    -Josue

  • Thanks Josue,

    After exporting the required ARCH and CROSS_COMPILE variables, I could successfully see omapdrm in menuconfig. However, despite making the necessary configuration changes, the DRM is still not being initialized.

    Here's a step-by-step account of my actions:

    1. I performed a fresh installation of the TI-Processor-SDK 9.03 and executed the make -j$(nproc) command from the top-level SDK directory to compile the DTBS and create a .config file.
    2. Next, I navigated to the kernel directory /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti and exported the ARCH and CROSS_COMPILE variables.
    3. In menuconfig, I set the following variables to y:
      • CONFIG_DRM_TILCDC
      • CONFIG_DRM_OMAP
      • CONFIG_DRM_PANEL_LVDS
    4. After saving the updated .config file, I recompiled the kernel using make -j$(nproc) from the same directory.
    5. With the compiled kernel and the corresponding SD card image created for my AM5728 EVM board, I booted my custom board after running the following commands to update my sdcard:-
      1. cp /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/boot/zImage /media/vishal/rootfs/boot/zImage-6.1.119-ti-ge4e8b16e66f5

      2. cp /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/boot/dts/*.dtb /media/vishal/rootfs/boot/dtb/

      3. cp /opt/ti-processor-sdk-linux-am57xx-evm-09_03_06_05/board-support/ti-linux-kernel-6.1.119+gitAUTOINC+e4e8b16e66-ti/arch/arm/boot/dts/*.dtbo /media/vishal/rootfs/boot/dtb/

    However, despite these efforts, modetest continued to fail on both my custom board as well as on my am5728 EVM, displaying the following error message:


    root@am57xx-evm:~# dmesg | grep omap
    [    0.236785] omap_prm: probe of 4ae06500.prm failed with error -22
    [    0.315063] omap_voltage_late_init: Voltage driver support not added
    [    0.397521] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    1.746765] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.833496] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.846221] omap_rng 48090000.rng: Random Number Generator ver. 20
    [    1.859222] omap_gpio 4805d000.gpio: Could not set line 27 debounce to 200000 microseconds (-22)
    [    1.868530] sdhci-omap 4809c000.mmc: Got CD GPIO
    [    1.873413] sdhci-omap 4809c000.mmc: supply vqmmc not found, using dummy regulator
    [    1.881835] sdhci-omap 4809c000.mmc: no pinctrl state for ddr_3_3v mode
    [    2.053283] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    2.060546] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    3.262420] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    3.270172] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    3.289520] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    3.302917] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    3.349975] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    3.357269] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    3.442016] sdhci-omap 480b4000.mmc: supply pbias not found, using dummy regulator
    root@am57xx-evm:~# 
    root@am57xx-evm:~# 
    root@am57xx-evm:~# dmesg | grep drm 
    [    5.826782] systemd[1]: Starting Load Kernel Module drm...
    root@am57xx-evm:~# 
    root@am57xx-evm:~# modetest
    trying to open device 'i915'...failed
    trying to open device 'amdgpu'...failed
    trying to open device 'radeon'...failed
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed
    trying to open device 'omapdrm'...failed
    trying to open device 'exynos'...failed
    trying to open device 'tilcdc'...failed
    trying to open device 'msm'...failed
    trying to open device 'sti'...failed
    trying to open device 'tegra'...failed
    trying to open device 'imx-drm'...failed
    trying to open device 'rockchip'...failed
    trying to open device 'atmel-hlcdc'...failed
    trying to open device 'fsl-dcu-drm'...failed
    trying to open device 'vc4'...failed
    trying to open device 'virtio_gpu'...failed
    trying to open device 'mediatek'...failed
    trying to open device 'meson'...failed
    trying to open device 'pl111'...failed
    trying to open device 'stm'...failed
    trying to open device 'sun4i-drm'...failed
    trying to open device 'armada-drm'...failed
    trying to open device 'komeda'...failed
    trying to open device 'imx-dcss'...failed
    trying to open device 'mxsfb-drm'...failed
    no device found
    

    Although default 9.03 SDK based sdcard created from create-sd-card.sh has no issues on running modetest on both am5728 EVM and my custom board.

    I am unsure as to what steps I may have missed or where the issue lies. Could you please provide guidance on resolving this matter?

    Thank you for your time and consideration.
    Sincerely,
    Vishal



  • Hello Vishal,

    Any reason they have to be built in versus just loaded as modules? I built the SDK similarly as you:

    josue@jz-ws:~/data/sdk_s/am57x/ti-processor-sdk-linux-am57xx-evm-09_03_06_05$ make linux -j$(nproc)

    This command sets the config and builds Linux image as well as all the modules.

    All of the configs you mention above,

    • CONFIG_DRM_TILCDC
    • CONFIG_DRM_OMAP
    • CONFIG_DRM_PANEL_LVDS

    are already set as <m>. Not necessary to make them in-built modules.

    It seems like your method of copying the necessary files is good, except you are not loading the modules.

    See the following instructions:

    I have rebuilt, left the modules as-is and copied over the image + modules to my SD card. No changes in device tree.

    It works as expected:

    root@am57xx-evm:~# dmesg | grep omapdrm
    [    9.566101] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops [omapdrm])
    [    9.609863] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops [omapdrm])
    [    9.996704] omapdrm omapdrm.0: [drm] fb0: omapdrmdrmfb frame buffer device
    [   10.123443] Modules linked in: snd_soc_simple_card snd_soc_simple_card_utils omapdrm(+) cec omap_aes_driver libaes omap_wdt pruss ahci_dwcr
    [   10.224304]  drm_bridge_hpd_enable from pdev_probe+0x5e8/0x788 [omapdrm]
    [   10.231170]  pdev_probe [omapdrm] from platform_probe+0x5c/0xbc
    [   10.284912]  __platform_register_drivers from omap_drm_init+0x3c/0x50 [omapdrm]
    [   10.292388]  omap_drm_init [omapdrm] from do_one_initcall+0x48/0x254
    [   11.228027] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 0
    root@am57xx-evm:~# lsmod | grep omapdrm
    omapdrm               184320  4
    cec                    40960  1 omapdrm

    -Josue

  • Josue,

    Any reason they have to be built in versus just loaded as modules? I built the SDK similarly as you:

    I've aimed to simplify the setup by avoiding explicit loading, which allows zImage to automatically initialize omapdrm when it boots.

    Now, I'll attempt to make the three kernel modules set to 'm'
    instead of being set to 'y' and will follow the provided commands in the image you shared to report back on any success or issues. 

    Can we chat so that work is done faster? Sent you a friendship request ! Or even whatsapp will be a good option ! If whatsapp is ok then please ping me on
    +91 8527459897

    -Vishal

  • Any reason they have to be built in versus just loaded as modules? I built the SDK similarly as you:

    I've aimed to simplify the setup by avoiding explicit loading, which allows zImage to automatically initialize omapdrm when it boots.

    I'll attempted to make the three kernel modules set to 'm'
    instead of being set to 'y' and followed the provided commands in the image you shared and omapdrm is working fine now. 

    But when I port our LCD then omapdrm again fails when running modetest command. I am attaching the diff of changes done. 
    These changes are ported from 6.03 SDK where they work fine. 

    --------------- arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi ---------------
    index f08a1c54c..f84f31324 100644
    @@ -18,7 +18,8 @@ aliases {
     		rtc0 = &mcp_rtc;
     		rtc1 = &tps659038_rtc;
     		rtc2 = &rtc;
    -		display0 = &hdmi0;
    +		display0 = "/display";
    +		display1 = "/connector";
     	};
     
     	chosen {
    @@ -193,6 +194,47 @@ tpd12s015_out: endpoint {
     		};
     	};
     
    +	     //[00] LCD Device entry
    +
    +        lcd0: display {
    +              compatible = "bolymin,btz070f-chc" ,"panel-dpi";
    +              //compatible = "osddisplays,osd070t1718-19ts" ,"panel-dpi";
    +              backlight = <&lcd_bl>;
    +              enable-gpios = <&gpio5 12 GPIO_ACTIVE_HIGH>;
    +              attr-gpios = <&gpio7 14 GPIO_ACTIVE_HIGH>; //LCD GPIO [AKSHI] changed in VIC2
    +              label = "lcd";
    +
    +              /*panel-timing {
    +                                clock-frequency = <51200000>;
    +                                de-active = <1>;
    +                                hactive = <1024>;
    +                                hback-porch = <12>;
    +                                hfront-porch = <85>;
    +                                hsync-active = <0>;
    +                                hsync-len = <8>;
    +                                pixelclk-active = <1>;
    +                                vactive = <600>;
    +                                vback-porch = <12>;
    +                                vfront-porch = <12>;
    +                                vsync-active = <0>;
    +                                vsync-len = <8>;
    +                        };*/
    +
    +              port {
    +                   lcd_in: endpoint {
    +                           remote-endpoint = <&dpi_out>;
    +                           };
    +              };
    +         };
    +
    +         lcd_bl: backlight {
    +                 compatible = "pwm-backlight";
    +                 brightness-levels = <0 32 64 96 128 160 192 255>;
    +                 default-brightness-level = <8>;
    +                 pwms = <&ehrpwm0 0 50000 0>;
    +         };
    +
    +
     	sound0: sound0 {
     		compatible = "simple-audio-card";
     		simple-audio-card,name = "BeagleBoard-X15";
    @@ -435,6 +477,29 @@ mcp_rtc: rtc@6f {
     	};
     };
     
    +/* [00] ::  Added Touch panel entries */
    +&i2c5 {
    +        status = "okay";
    +        clock-frequency = <400000>;
    +
    +        polytouch: edt-ft5x06@38 {
    +                compatible = "edt,edt-ft5x06";
    +                reg = <0x38>;
    +                attb-gpio = <&gpio5 9 GPIO_ACTIVE_HIGH>;
    +                interrupt-parent = <&gpio5>;
    +                interrupts = <9 0>;
    +        //reset-gpios = <&gpio5 25 GPIO_ACTIVE_LOW>;
    +        //wake-gpios = <&gpio2 21 GPIO_ACTIVE_HIGH>;
    +/* AKSHI*/
    +                threshold = <20>;
    +                touchscreen-size-x = <1024>;
    +                touchscreen-size-y = <600>;
    +                wakeup-source;
    +    };
    +
    +};
    +
    +
     &gpio7_target {
     	ti,no-reset-on-init;
     	ti,no-idle-on-init;
    @@ -581,9 +646,20 @@ map0 {
     };
     
     &dss {
    -	status = "okay";
    -
    -	vdda_video-supply = <&ldoln_reg>;
    +        status = "ok";
    +        vdda_video-supply = <&ldoln_reg>;
    +        ports { 
    +                #address-cells = <1>;
    +                #size-cells = <0>;
    +
    +                port {
    +                        reg = <0>;
    +                        dpi_out: endpoint {
    +                                data-lines = <24>;
    +                                remote-endpoint = <&lcd_in>;
    +                        };
    +                };
    +        };
     };
     
     &hdmi {

    --------------------- drivers/gpu/drm/panel/panel-simple.c ---------------------
    index 455ad3354..c047a8577 100644
    @@ -41,6 +41,18 @@
     #include <drm/drm_mipi_dsi.h>
     #include <drm/drm_panel.h>
     
    +//[01]
    +u32 lcd_reg_arr[] =
    +{0x4A0035C8, 0x4A0035CC, 0x4A0035D4, 0x4A0035D8,
    +	0x4A0035DC, 0x4A0035E0, 0x4A0035E4, 0x4A0035E8,
    +	0x4A0035EC, 0x4A0035F0, 0x4A0035F4, 0x4A0035F8,
    +	0x4A0035FC, 0x4A003600, 0x4A003604, 0x4A003608,
    +	0x4A00360C, 0x4A003610, 0x4A003614, 0x4A003618,
    +	0x4A00361C, 0x4A003620, 0x4A003624, 0x4A003624,
    +	0x4A003628, 0x4A00362C, 0x4A003630, 0x4A003634,
    +	0x4A003638};
    +
    +static void __iomem *lcd_register;
     /**
      * struct panel_desc - Describes a simple panel.
      */
    @@ -151,6 +163,10 @@ struct panel_simple {
     
     	struct gpio_desc *enable_gpio;
     
    +	//AKSHI
    +	struct gpio_desc *attr_gpio;
    +	//AKSHI
    +
     	struct edid *edid;
     
     	struct drm_display_mode override_mode;
    @@ -160,12 +176,14 @@ struct panel_simple {
     
     static inline struct panel_simple *to_panel_simple(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	return container_of(panel, struct panel_simple, base);
     }
     
     static unsigned int panel_simple_get_timings_modes(struct panel_simple *panel,
     		struct drm_connector *connector)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct drm_display_mode *mode;
     	unsigned int i, num = 0;
     
    @@ -198,6 +216,7 @@ static unsigned int panel_simple_get_timings_modes(struct panel_simple *panel,
     static unsigned int panel_simple_get_display_modes(struct panel_simple *panel,
     		struct drm_connector *connector)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct drm_display_mode *mode;
     	unsigned int i, num = 0;
     
    @@ -229,6 +248,7 @@ static unsigned int panel_simple_get_display_modes(struct panel_simple *panel,
     static int panel_simple_get_non_edid_modes(struct panel_simple *panel,
     		struct drm_connector *connector)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct drm_display_mode *mode;
     	bool has_override = panel->override_mode.type;
     	unsigned int num = 0;
    @@ -274,6 +294,7 @@ static int panel_simple_get_non_edid_modes(struct panel_simple *panel,
     
     static void panel_simple_wait(ktime_t start_ktime, unsigned int min_ms)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	ktime_t now_ktime, min_ktime;
     
     	if (!min_ms)
    @@ -288,6 +309,7 @@ static void panel_simple_wait(ktime_t start_ktime, unsigned int min_ms)
     
     static int panel_simple_disable(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     
     	if (!p->enabled)
    @@ -303,6 +325,7 @@ static int panel_simple_disable(struct drm_panel *panel)
     
     static int panel_simple_suspend(struct device *dev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = dev_get_drvdata(dev);
     
     	gpiod_set_value_cansleep(p->enable_gpio, 0);
    @@ -317,6 +340,7 @@ static int panel_simple_suspend(struct device *dev)
     
     static int panel_simple_unprepare(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     	int ret;
     
    @@ -335,6 +359,7 @@ static int panel_simple_unprepare(struct drm_panel *panel)
     
     static int panel_simple_resume(struct device *dev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = dev_get_drvdata(dev);
     	int err;
     
    @@ -358,6 +383,7 @@ static int panel_simple_resume(struct device *dev)
     
     static int panel_simple_prepare(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     	int ret;
     
    @@ -378,6 +404,7 @@ static int panel_simple_prepare(struct drm_panel *panel)
     
     static int panel_simple_enable(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     
     	if (p->enabled)
    @@ -394,6 +421,7 @@ static int panel_simple_enable(struct drm_panel *panel)
     static int panel_simple_get_modes(struct drm_panel *panel,
     		struct drm_connector *connector)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     	int num = 0;
     
    @@ -427,6 +455,7 @@ static int panel_simple_get_timings(struct drm_panel *panel,
     		unsigned int num_timings,
     		struct display_timing *timings)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     	unsigned int i;
     
    @@ -442,6 +471,7 @@ static int panel_simple_get_timings(struct drm_panel *panel,
     
     static enum drm_panel_orientation panel_simple_get_orientation(struct drm_panel *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *p = to_panel_simple(panel);
     
     	return p->orientation;
    @@ -462,6 +492,7 @@ static struct panel_desc panel_dpi;
     static int panel_dpi_probe(struct device *dev,
     		struct panel_simple *panel)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct display_timing *timing;
     	const struct device_node *np;
     	struct panel_desc *desc;
    @@ -512,6 +543,7 @@ static void panel_simple_parse_panel_timing_node(struct device *dev,
     		struct panel_simple *panel,
     		const struct display_timing *ot)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	const struct panel_desc *desc = panel->desc;
     	struct videomode vm;
     	unsigned int i;
    @@ -554,6 +586,7 @@ static void panel_simple_parse_panel_timing_node(struct device *dev,
     
     static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *panel;
     	struct display_timing dt;
     	struct device_node *ddc;
    @@ -561,6 +594,16 @@ static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
     	u32 bus_flags;
     	int err;
     
    +	//[01] :: Writing SoC Register Values permanently
    +	size_t n = sizeof(lcd_reg_arr) / sizeof(int);
    +	int i=0;
    +	for(i=0;i<n;i++)
    +	{
    +		lcd_register = ioremap(lcd_reg_arr[i],4);
    +		iowrite32(0x000D0100, lcd_register);
    +		iounmap(lcd_register);
    +	}
    +
     	panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL);
     	if (!panel)
     		return -ENOMEM;
    @@ -579,6 +622,18 @@ static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
     		return dev_err_probe(dev, PTR_ERR(panel->enable_gpio),
     				"failed to request GPIO\n");
     
    +	//AKSHI
    +	panel->attr_gpio = devm_gpiod_get_optional(dev, "attr",
    +			GPIOD_OUT_LOW);
    +	if (IS_ERR(panel->attr_gpio)) {
    +		err = PTR_ERR(panel->attr_gpio);
    +		if (err != -EPROBE_DEFER)
    +			dev_err(dev, "failed to request GPIO: %d\n", err);
    +		return err;
    +	}
    +
    +	//AKSHI
    +
     	err = of_drm_get_panel_orientation(dev->of_node, &panel->orientation);
     	if (err) {
     		dev_err(dev, "%pOF: failed to get orientation %d\n", dev->of_node, err);
    @@ -695,6 +750,7 @@ static int panel_simple_probe(struct device *dev, const struct panel_desc *desc)
     
     static void panel_simple_remove(struct device *dev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *panel = dev_get_drvdata(dev);
     
     	drm_panel_remove(&panel->base);
    @@ -709,12 +765,59 @@ static void panel_simple_remove(struct device *dev)
     
     static void panel_simple_shutdown(struct device *dev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	struct panel_simple *panel = dev_get_drvdata(dev);
     
     	drm_panel_disable(&panel->base);
     	drm_panel_unprepare(&panel->base);
     }
     
    +
    +//[01] :: Added Structure for Bolymin LCD ( Provided by Vendor )
    +static const struct drm_display_mode btz070f_chc_mode = {
    +	.clock = 51200,
    +	/*.hdisplay = 800,
    +	  .hsync_start = 800 + 80,
    +	  .hsync_end = 800 + 80 + 160,
    +	  .htotal = 800 + 80 + 160 + 80,
    +	  .vdisplay = 480,
    +	  .vsync_start = 480 + 6,
    +	  .vsync_end = 480 + 6 + 23,
    +	  .vtotal = 480 + 6 + 23 + 6,*/
    +
    +	.hdisplay = 1024,
    +	.hsync_start = 1024 + 80,
    +	.hsync_end = 1024 + 80 + 160,
    +	.htotal = 1024 + 80 + 160 + 80,
    +	.vdisplay = 600,
    +	.vsync_start = 600 + 6,
    +	.vsync_end = 600 + 6 + 23,
    +	.vtotal = 600 + 6 + 23 + 6,
    +	//.vrefresh = 60,
    +	.flags = DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_PHSYNC,
    +};
    +
    +//[01]
    +static const struct panel_desc btz070f_chc = {
    +
    +	.modes = &btz070f_chc_mode,
    +	.num_modes = 1,
    +	.bpc = 8,
    +	.size = {
    +		.width = 85,
    +		.height = 154,
    +	},
    +	//AKSHI : DELAY ADDED FOR LCD FLASH PROBLEM
    +	.delay = {
    +		.prepare = 41,
    +		.enable = 50,
    +		.unprepare = 41,
    +		.disable = 50,
    +	},
    +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE,
    +};
    +
     static const struct drm_display_mode ampire_am_1280800n3tzqw_t00h_mode = {
     	.clock = 71100,
     	.hdisplay = 1280,
    @@ -4058,7 +4161,10 @@ static const struct panel_desc arm_rtsm = {
     };
     
     static const struct of_device_id platform_of_match[] = {
    -	{
    +	{		//[01]
    +		.compatible = "bolymin,btz070f-chc",
    +		.data = &btz070f_chc,
    +	}, {
     		.compatible = "ampire,am-1280800n3tzqw-t00h",
     		.data = &ampire_am_1280800n3tzqw_t00h,
     	}, {
    @@ -4078,7 +4184,7 @@ static const struct of_device_id platform_of_match[] = {
     		.data = &armadeus_st0700_adapt,
     	}, {
     		.compatible = "auo,b101aw03",
    -		.data = &auo_b101aw03,
    +			.data = &auo_b101aw03,
     	}, {
     		.compatible = "auo,b101xtn01",
     			.data = &auo_b101xtn01,
    @@ -4472,6 +4578,8 @@ MODULE_DEVICE_TABLE(of, platform_of_match);
     
     static int panel_simple_platform_probe(struct platform_device *pdev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
    +
     	const struct of_device_id *id;
     
     	id = of_match_node(platform_of_match, pdev->dev.of_node);
    @@ -4483,6 +4591,7 @@ static int panel_simple_platform_probe(struct platform_device *pdev)
     
     static int panel_simple_platform_remove(struct platform_device *pdev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	panel_simple_remove(&pdev->dev);
     
     	return 0;
    @@ -4490,6 +4599,7 @@ static int panel_simple_platform_remove(struct platform_device *pdev)
     
     static void panel_simple_platform_shutdown(struct platform_device *pdev)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	panel_simple_shutdown(&pdev->dev);
     }
     
    @@ -4750,6 +4860,7 @@ MODULE_DEVICE_TABLE(of, dsi_of_match);
     
     static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	const struct panel_desc_dsi *desc;
     	const struct of_device_id *id;
     	int err;
    @@ -4780,6 +4891,7 @@ static int panel_simple_dsi_probe(struct mipi_dsi_device *dsi)
     
     static void panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	int err;
     
     	err = mipi_dsi_detach(dsi);
    @@ -4791,6 +4903,7 @@ static void panel_simple_dsi_remove(struct mipi_dsi_device *dsi)
     
     static void panel_simple_dsi_shutdown(struct mipi_dsi_device *dsi)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	panel_simple_shutdown(&dsi->dev);
     }
     
    @@ -4807,6 +4920,7 @@ static struct mipi_dsi_driver panel_simple_dsi_driver = {
     
     static int __init panel_simple_init(void)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	int err;
     
     	err = platform_driver_register(&panel_simple_platform_driver);
    @@ -4830,6 +4944,7 @@ module_init(panel_simple_init);
     
     static void __exit panel_simple_exit(void)
     {
    +	printk("VM********************* File: %s, Line: %d, Function: %s ****************************\n", __FILE__, __LINE__, __FUNCTION__);
     	if (IS_ENABLED(CONFIG_DRM_MIPI_DSI))
     		mipi_dsi_driver_unregister(&panel_simple_dsi_driver);



    Also, can we chat so that work is done faster? Sent you a friendship request ! Or even whatsapp will be a good option !
    -Vishal

  • Vishal, 

    I’m out of office for holiday. 

    Best,

    Josue

  • Oh that's wonderful!
    Anyone else that could look into this LCD porting thing ?


  • Vishal,

    Can you please share the logs confirming that omapdrm was loaded correctly? Second, do you have any logs of the failure? Is it the same as before? 

    modetest
    trying to open device 'i915'...failed
    trying to open device 'amdgpu'...failed
    trying to open device 'radeon'...failed
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed
    trying to open device 'omapdrm'...failed
    trying to open device 'exynos'...failed
    trying to open device 'tilcdc'...failed
    trying to open device 'msm'...failed
    trying to open device 'sti'...failed
    trying to open device 'tegra'...failed
    trying to open device 'imx-drm'...failed
    trying to open device 'rockchip'...failed
    trying to open device 'atmel-hlcdc'...failed
    trying to open device 'fsl-dcu-drm'...failed
    trying to open device 'vc4'...failed
    trying to open device 'virtio_gpu'...failed
    trying to open device 'mediatek'...failed
    trying to open device 'meson'...failed
    trying to open device 'pl111'...failed
    trying to open device 'stm'...failed
    trying to open device 'sun4i-drm'...failed
    trying to open device 'armada-drm'...failed
    trying to open device 'komeda'...failed
    trying to open device 'imx-dcss'...failed
    trying to open device 'mxsfb-drm'...failed
    no device found

    The diffs above are the edits you made that are the exact changes done in the 6.03 kernel correct?
    Have you tried reaching out to the LCD vendor to see if they have any changes or mods for the newer kernels?

    I will need to do some further learning here considering display is not my area of expertise. There might have been major changes in the display domain in the kernel so perhaps its not working with the same setup.

    -Josue

  • ,

    Here is the ouput of modetest. And it is not showing error unlike previously. So I don't have error logs:-

    root@am57xx-evm:~# modetest             
    trying to open device 'i915'...failed   
    trying to open device 'amdgpu'...failed 
    trying to open device 'radeon'...failed 
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed 
    trying to open device 'omapdrm'...done  
    Encoders:                               
    id      crtc    type    possible crtcs  possible clones
    62      64      TMDS    0x00000001      0x00000001
    
    Connectors:
    id      encoder status          name            size (mm)       modes   encoders
    63      62      connected       HDMI-A-1        0x0             5       62
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 1024x768 60.00 1024 1048 1184 1344 768 771 777 806 65000 flags: nhsync, nvsync; type: driver
      #1 800x600 60.32 800 840 968 1056 600 601 605 628 40000 flags: phsync, pvsync; type: driver
      #2 800x600 56.25 800 824 896 1024 600 601 603 625 36000 flags: phsync, pvsync; type: driver
      #3 848x480 60.00 848 864 976 1088 480 486 494 517 33750 flags: phsync, pvsync; type: driver
      #4 640x480 59.94 640 656 752 800 480 490 492 525 25175 flags: nhsync, nvsync; type: driver
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    
    CRTCs:
    id      fb      pos     size
    64      66      (0,0)   (1024x768)
      #0 1024x768 60.00 1024 1048 1184 1344 768 771 777 806 65000 flags: nhsync, nvsync; type: driver
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    
    Planes:
    id      crtc    fb      CRTC x,y        x,y     gamma size      possible crtcs
    32      64      66      0,0             0,0     0               0x00000001
      formats: RX12 AR12 RG16 XR24 RG24 AR24 RA24 RX24 AR15 XR12 RA12 XR15
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000c00000018000000
                            01000000480000005258313241523132
                            52473136585232345247323441523234
                            52413234525832344152313558523132
                            5241313258523135ff0f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RX12:  LINEAR
                             AR12:  LINEAR
                             RG16:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             AR24:  LINEAR
                             RA24:  LINEAR
                             RX24:  LINEAR
                             AR15:  LINEAR
                             XR12:  LINEAR
                             RA12:  LINEAR
                             XR15:  LINEAR
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            35 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            36 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            37 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
    38      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 1
            41 zpos:
                    flags: range
                    values: 0 3
                    value: 1
            42 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            43 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            44 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            45 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    46      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            48 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 2
            49 zpos:
                    flags: range
                    values: 0 3
                    value: 2
            50 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            51 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            52 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            53 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    54      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            56 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 3
            57 zpos:
                    flags: range
                    values: 0 3
                    value: 3
            58 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            59 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            60 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            61 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    
    Frame buffers:
    id      size    pitch
    


    also when i run kmscube it gives the error as below:-

    MESA: info: Loaded libpvr_dri_support.so
    PVR:(Error): OpenServices: PVRDRMOpenRender failed [0, ]
    PVR:(Error): PVRSRVConnect: Unable to open connection. [0, ]
    PVR:(Error): Couldn't connect to services [0, ]
    PVR:(Error): PVRDRIEGLGlobalDataInit: PVR Services initialisation failed [0, ]
    PVR:(Error): PVRDRICreateScreenImpl: Couldn't create EGL global data [0, ]
    MESA: info: Unloaded libpvr_dri_support.so
    MESA-LOADER: failed to open zink: /usr/lib/dri/zink_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/dri, suffix _dri)
    failed to load driver: zink
    Using display 0x1aec78 with EGL version 1.4
    ===================================
    EGL information:
      version: "1.4"
      vendor: "Mesa Project"
      client extensions: "EGL_EXT_client_extensions EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug EGL_EXT_platf"
      display extensions: "EGL_ANDROID_blob_cache EGL_EXT_buffer_age EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_image_gl_colorspace EGL_EXT_yuv_surface EGL_KHR_cl_event2 EGL_"
    ===================================
    OpenGL ES 2.x information:
      version: "OpenGL ES 3.1 Mesa 22.3.5 (git-c9f0919367)"
      shading language version: "OpenGL ES GLSL ES 3.10"
      vendor: "Mesa/X.org"
      renderer: "softpipe"
      extensions: "GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_textur"
    ===================================
    failed to set mode: Permission denied
    

    Have you tried reaching out to the LCD vendor to see if they have any changes or mods for the newer kernels?

    Actually LCD vendor only helped in successfully porting the LCD in 6.03 SDK and the changes suggested by him are already inculcated in 9.03 SDK.


    I will need to do some further learning here considering display is not my area of expertise. There might have been major changes in the display domain in the kernel so perhaps its not working with the same setup.

    Please do that or connect me to someone who has expertise in this!

    Thanks!

  • Vishal,

    Can you share the differences in your changes for 9.03 vs 6.03?

    Unfortunately we only support what is a part of our SDK and what our EVMs have as part of the reference design, e.g. the AM572x EVM with the LCD.

    So I will help you however I can.

    -Josue

  • Josue, 

    I have already attached the changed files in my previous replies.  No other changes apart from changes in dtsi and panel-simple.c (attached already). Is the am57xx-beagle-x15-common.dtsi  actually getting used? 

    Why so many entries in the Makefile(arch/arm/boot/dts/Makefile) ? Which dtbs/dtbos are actually getting used for our custom board?

    am57xx-evm-dtbs := am57xx-beagle-x15.dtb am57xx-evm.dtbo
    am57xx-evm-reva3-dtbs := am57xx-beagle-x15-revc.dtb am57xx-evm.dtbo
    dtb-$(CONFIG_SOC_DRA7XX) += \
    am57xx-beagle-x15.dtb \
    am57xx-beagle-x15-revb1.dtb \
    am57xx-beagle-x15-revc.dtb \
    am57xx-evm.dtb \
    am57xx-evm-reva3.dtb \
    am5729-beagleboneai.dtb \
    am57xx-cl-som-am57x.dtb \
    am57xx-sbc-am57x.dtb \
    am572x-idk.dtb \
    am572x-idk-touchscreen.dtbo \
    am571x-idk.dtb \
    am571x-idk-touchscreen.dtbo \
    am574x-idk.dtb \
    am57xx-idk-lcd-osd101t2045.dtbo \
    am57xx-idk-lcd-osd101t2587.dtbo \
    dra7-evm.dtb \
    dra72-evm.dtb \
    dra72-evm-revc.dtb \
    dra71-evm.dtb \
    ov10635.dtbo \
    dra76-evm.dtb


     Also, when I removed the compilation of am57xx-evm.dtbo, am57xx-evm.dtb, am57xx-evm-reva3.dtb from Makefile (as shown below ),  modetest for omapdrm test fails. Can you tell why? 

    am57xx-evm-dtbs := am57xx-beagle-x15.dtb
    am57xx-evm-reva3-dtbs := am57xx-beagle-x15-revc.dtb
    dtb-$(CONFIG_SOC_DRA7XX) += \
    am57xx-beagle-x15.dtb \
    am57xx-beagle-x15-revb1.dtb \
    am57xx-beagle-x15-revc.dtb \
    am5729-beagleboneai.dtb \
    am57xx-cl-som-am57x.dtb \
    am57xx-sbc-am57x.dtb \
    am572x-idk.dtb \
    am572x-idk-touchscreen.dtbo \
    am571x-idk.dtb \
    am571x-idk-touchscreen.dtbo \
    am574x-idk.dtb \
    am57xx-idk-lcd-osd101t2045.dtbo \
    am57xx-idk-lcd-osd101t2587.dtbo \
    dra7-evm.dtb \
    dra72-evm.dtb \
    dra72-evm-revc.dtb \
    dra71-evm.dtb \
    ov10635.dtbo \
    dra76-evm.dtb


  • Vishal,

    Why so many entries in the Makefile(arch/arm/boot/dts/Makefile) ? Which dtbs/dtbos are actually getting used for our custom board?

    There are many entries because our SW supports multiple boards and different revisions on some. I cannot answer what dtb your board is using.

    Also, when I removed the compilation of am57xx-evm.dtbo, am57xx-evm.dtb, am57xx-evm-reva3.dtb from Makefile (as shown below ),  modetest for omapdrm test fails. Can you tell why? 

    Generally, if the compatible is not called on the DTS for a module, than the module will not be probed in Linux, so the module will not be loaded.  That is my guess as to why it fails.

    I would then re-test by loading the module manually and re-running modetest, see if that works. This help my theory.

    -Josue

  • Josue,

    What  compatible string (compatible =)is responsible to load the omapdrm kernel module? I will grep that in all the dts files. Somehow, I might have removed that compatible string and that's why the omapdrm driver didn't load.  Also can you accept my friend request? I think it enables to chat ! Posting here and waiting for replies takes too long.

  • Vishal,

    On the subject of DM within E2E, it does not help the forum to have these conversations in private and this is how we work so I will only respond to the E2E thread. The private messaging is generally for NDA material or personal private conversation among members.

    The compatible is the DSS compatible used under the dss node. See the following pieces of documentation:

    I terms of our support here, I am trying to be helpful with your case, but an example outside of our standard support is not usually supported.

    See: https://software-dl.ti.com/processor-sdk-linux/esd/AM57X/09_03_06_05/exports/docs/linux/Overview_Technical_Support.html#open-source-software-support-disclaimer

    Have you tried to make sure your new device tree is free from errors?

    I found a very similar issue as your from the past here: e2e.ti.com/.../am5728-omapdrm-device-not-present-even-though-driver-is-loaded-hardware-good

    Best,

    Josue

  • On the subject of DM within E2E, it does not help the forum to have these conversations in private and this is how we work so I will only respond to the E2E thread. The private messaging is generally for NDA material or personal private conversation among members.

    The compatible is the DSS compatible used under the dss node. See the following pieces of documentation:

    Ok, no problem.

    Anyway I tried to boot am5728 SDK with sdcard that I created using create_sdcard.sh script provided in the SDK (See boot logs around omapdrm below)

    [   10.224029] WARNING: CPU: 1 PID: 152 at drivers/gpu/drm/drm_bridge.c:1416 drm_bridge_hpd_enable+0x7c/0x80
    [   10.233673] Hot plug detection already enabled
    [   10.238189] Modules linked in: snd_soc_simple_card pvrsrvkm(O) snd_soc_simple_card_utils omapdrm(+) cec omap_wdt omap_aes_driver libaes ti_vip ti_vpe ti_sc v4l2_mem2mem ti_csc snd_soc_davinci_mcasp ti_vpdma snd_soc_tlv320aic3x_i2c snd_soc_tlv320aic3x snd_soc_ti_udma videobuf2_dma_contig snd_soc_ti_edma v4l2_fwnode snd_soc_ti_sdma v4l2_async videobuf2_memops videobuf2_v4l2 videobuf2_common snd_soc_core snd_pcm_dmaengine pruss ac97_bus snd_pcm videodev snd_timer mc snd ahci_dwc omap_hwspinlock omap_des soundcore dwc3_omap omap_crypto rtc_omap libdes extcon_palmas omap_sham crypto_engine omap_remoteproc virtio_rpmsg_bus rpmsg_ns rpmsg_core display_connector ti_tpd12s015 gdbserverproxy(O) cryptodev(O)
    [   10.300537] CPU: 1 PID: 152 Comm: systemd-udevd Tainted: G           O       6.1.119-ti-ge4e8b16e66f5 #1
    [   10.310058] Hardware name: Generic DRA74X (Flattened Device Tree)
    [   10.316192]  unwind_backtrace from show_stack+0x10/0x14
    [   10.321472]  show_stack from dump_stack_lvl+0x40/0x4c
    [   10.326568]  dump_stack_lvl from __warn+0x7c/0x158
    [   10.331390]  __warn from warn_slowpath_fmt+0x124/0x1c0
    [   10.336547]  warn_slowpath_fmt from drm_bridge_hpd_enable+0x7c/0x80
    [   10.342864]  drm_bridge_hpd_enable from pdev_probe+0x5e8/0x788 [omapdrm]
    [   10.349731]  pdev_probe [omapdrm] from platform_probe+0x5c/0xbc
    [   10.355804]  platform_probe from really_probe+0xc8/0x2ec
    [   10.361145]  really_probe from __driver_probe_device+0x88/0x1a0
    [   10.367095]  __driver_probe_device from driver_probe_device+0x30/0x104
    [   10.373687]  driver_probe_device from __driver_attach+0x90/0x174
    [   10.379730]  __driver_attach from bus_for_each_dev+0x74/0xc0
    [   10.385437]  bus_for_each_dev from bus_add_driver+0x164/0x1f0
    [   10.391235]  bus_add_driver from driver_register+0x88/0x11c
    [   10.396850]  driver_register from __platform_register_drivers+0x38/0x88
    [   10.403503]  __platform_register_drivers from omap_drm_init+0x3c/0x50 [omapdrm]
    [   10.410980]  omap_drm_init [omapdrm] from do_one_initcall+0x48/0x254
    [   10.417449]  do_one_initcall from do_init_module+0x44/0x1d4
    [   10.423065]  do_init_module from sys_finit_module+0xc0/0x110
    [   10.428771]  sys_finit_module from __sys_trace_return+0x0/0x10
    [   10.434661] Exception stack(0xf1609fa8 to 0xf1609ff0)
    [   10.437164] ata1: SATA link down (SStatus 0 SControl 300)
    [   10.439727] 9fa0:                   00000000 00000000 0000000f b6daa8a0 00000000 00020000
    [   10.439758] 9fc0: 00000000 00000000 00000000 0000017b 00000000 000719f8 00000007 00000000
    [   10.461578] 9fe0: beb7b6d8 beb7b6c8 b6da5d4f b6cdb052
    [   10.466705] ---[ end trace 0000000000000000 ]---
    [   11.243530] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 1


    Why is this error coming on am5728 EVM booted with 9.03 PS? 

    Following is the output of modetest on EVM:-

    modetest                                                  
    trying to open device 'i915'...failed                                        
    trying to open device 'amdgpu'...failed                                      
    trying to open device 'radeon'...failed                                      
    trying to open device 'nouveau'...failed                                     
    trying to open device 'vmwgfx'...failed                                      
    trying to open device 'omapdrm'...done                                       
    Encoders:                                                                    
    id      crtc    type    possible crtcs  possible clones                      
    62      0       TMDS    0x00000001      0x00000001                           
                                                                                 
    Connectors:                                                                  
    id      encoder status          name            size (mm)       modes   encoders
    63      0       disconnected    HDMI-A-1        0x0             0       62
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    
    CRTCs:
    id      fb      pos     size
    64      0       (0,0)   (0x0)
      #0  nan 0 0 0 0 0 0 0 0 0 flags: ; type: 
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    
    Planes:
    id      crtc    fb      CRTC x,y        x,y     gamma size      possible crtcs
    32      0       0       0,0             0,0     0               0x00000001
      formats: RX12 AR12 RG16 XR24 RG24 AR24 RA24 RX24 AR15 XR12 RA12 XR15
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000c00000018000000
                            01000000480000005258313241523132
                            52473136585232345247323441523234
                            52413234525832344152313558523132
                            5241313258523135ff0f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RX12:  LINEAR
                             AR12:  LINEAR
                             RG16:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             AR24:  LINEAR
                             RA24:  LINEAR
                             RX24:  LINEAR
                             AR15:  LINEAR
                             XR12:  LINEAR
                             RA12:  LINEAR
                             XR15:  LINEAR
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            35 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            36 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            37 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
    38      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 1
            41 zpos:
                    flags: range
                    values: 0 3
                    value: 1
            42 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            43 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            44 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            45 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    46      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            48 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 2
            49 zpos:
                    flags: range
                    values: 0 3
                    value: 2
            50 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            51 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            52 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            53 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    54      0       0       0,0             0,0     0               0x00000001
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            56 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 3
            57 zpos:
                    flags: range
                    values: 0 3
                    value: 3
            58 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            59 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            60 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            61 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    
    Frame buffers:
    id      size    pitch
    

    kmscube application on EVM gives the following error:-

    kmscube 
    no connected connector!
    failed to initialize legacy DRM
    

    The SDK should have worked properly on EVM atleast.

    Also, I was successfully able to call the probe function of panel_simple.c driver (similar error logs above are seen during booting my custom board(see below). This worked after I modified the DTS files to support bollymin LCD. 

    [   10.907287] omapdrm omapdrm.0: [drm] fb0: omapdrmdrmfb frame buffer device
    [   10.944335] ------------[ cut here ]------------
    [   10.949005] WARNING: CPU: 0 PID: 139 at drivers/gpu/drm/drm_bridge.c:1416 drm_bridge_hpd_enable+0x7c/0x80
    [   10.958648] Hot plug detection already enabled
    [   10.963134] Modules linked in: snd_soc_simple_card omapdrm(+) snd_soc_simple_card_utils cec ti_vip ti_vpe ti_sc snd_soc_davinci_mcasp omap_aes_driver ti_csc ti_vpdma v4l2_mem2mem v4l2_fwr
    [   11.022796] CPU: 0 PID: 139 Comm: systemd-udevd Not tainted 6.1.119-00003-g89d4fe05b8ca-dirty #2
    [   11.031646] Hardware name: Generic DRA74X (Flattened Device Tree)
    [   11.037780]  unwind_backtrace from show_stack+0x10/0x14
    [   11.043029]  show_stack from dump_stack_lvl+0x40/0x4c
    [   11.048126]  dump_stack_lvl from __warn+0x7c/0x158
    [   11.052947]  __warn from warn_slowpath_fmt+0x124/0x1c0
    [   11.058135]  warn_slowpath_fmt from drm_bridge_hpd_enable+0x7c/0x80
    [   11.064453]  drm_bridge_hpd_enable from pdev_probe+0x5e8/0x788 [omapdrm]
    [   11.071289]  pdev_probe [omapdrm] from platform_probe+0x5c/0xbc
    [   11.077331]  platform_probe from really_probe+0xc8/0x2ec
    [   11.082672]  really_probe from __driver_probe_device+0x88/0x1a0
    [   11.088623]  __driver_probe_device from driver_probe_device+0x30/0x104
    [   11.095184]  driver_probe_device from __driver_attach+0x90/0x174
    [   11.101226]  __driver_attach from bus_for_each_dev+0x74/0xc0
    [   11.106933]  bus_for_each_dev from bus_add_driver+0x164/0x1f0
    [   11.112701]  bus_add_driver from driver_register+0x88/0x11c
    [   11.118316]  driver_register from __platform_register_drivers+0x38/0x88
    [   11.124969]  __platform_register_drivers from omap_drm_init+0x3c/0x50 [omapdrm]
    [   11.132415]  omap_drm_init [omapdrm] from do_one_initcall+0x48/0x254
    [   11.138916]  do_one_initcall from do_init_module+0x44/0x1d4
    [   11.144531]  do_init_module from sys_finit_module+0xc0/0x110
    [   11.150238]  sys_finit_module from __sys_trace_return+0x0/0x10
    [   11.156097] Exception stack(0xf2031fa8 to 0xf2031ff0)
    [   11.161193] 1fa0:                   00000000 00000000 00000011 b6dca8a0 00000000 00020000
    [   11.169403] 1fc0: 00000000 00000000 00000000 0000017b 00000000 00097fb0 00000007 00000000
    [   11.177612] 1fe0: bee08710 bee08700 b6dc5d4f b6cfb052
    [   11.182739] ---[ end trace 0000000000000000 ]---
    [   11.197296] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 0
    

    Running modetest on my custom board is also showing different results as compared to EVM(see below).

    modetest             
    trying to open device 'i915'...failed   
    trying to open device 'amdgpu'...failed 
    trying to open device 'radeon'...failed 
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed 
    trying to open device 'omapdrm'...done  
    Encoders:                               
    id      crtc    type    possible crtcs  possible clones
    62      65      TMDS    0x00000001      0x00000001
    63      67      TMDS    0x00000002      0x00000002
    
    Connectors:
    id      encoder status          name            size (mm)       modes   encoders
    64      62      connected       DPI-1           85x154          1       62
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 1024x600 59.99 1024 1104 1264 1344 600 606 629 635 51200 flags: phsync, pvsync; type: preferred, driver
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    66      63      connected       HDMI-A-1        0x0             5       63
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 1024x768 60.00 1024 1048 1184 1344 768 771 777 806 65000 flags: nhsync, nvsync; type: driver
      #1 800x600 60.32 800 840 968 1056 600 601 605 628 40000 flags: phsync, pvsync; type: driver
      #2 800x600 56.25 800 824 896 1024 600 601 603 625 36000 flags: phsync, pvsync; type: driver
      #3 848x480 60.00 848 864 976 1088 480 486 494 517 33750 flags: phsync, pvsync; type: driver
      #4 640x480 59.94 640 656 752 800 480 490 492 525 25175 flags: nhsync, nvsync; type: driver
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    
    CRTCs:
    id      fb      pos     size
    65      71      (0,0)   (1024x600)
      #0 1024x600 59.99 1024 1104 1264 1344 600 606 629 635 51200 flags: phsync, pvsync; type: preferred, driver
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    67      72      (0,0)   (1024x768)
      #0 1024x768 60.00 1024 1048 1184 1344 768 771 777 806 65000 flags: nhsync, nvsync; type: driver
      props:
            24 VRR_ENABLED:
                    flags: range
                    values: 0 1
                    value: 0
            25 DEGAMMA_LUT:
                    flags: blob
                    blobs:
    
                    value:
            26 DEGAMMA_LUT_SIZE:
                    flags: immutable range
                    values: 0 4294967295
                    value: 256
            27 CTM:
                    flags: blob
                    blobs:
    
                    value:
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
    
    Planes:
    id      crtc    fb      CRTC x,y        x,y     gamma size      possible crtcs
    32      65      71      0,0             0,0     0               0x00000003
      formats: RX12 AR12 RG16 XR24 RG24 AR24 RA24 RX24 AR15 XR12 RA12 XR15
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000c00000018000000
                            01000000480000005258313241523132
                            52473136585232345247323441523234
                            52413234525832344152313558523132
                            5241313258523135ff0f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RX12:  LINEAR
                             AR12:  LINEAR
                             RG16:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             AR24:  LINEAR
                             RA24:  LINEAR
                             RX24:  LINEAR
                             AR15:  LINEAR
                             XR12:  LINEAR
                             RA12:  LINEAR
                             XR15:  LINEAR
            34 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            35 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            36 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            37 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
    38      67      72      0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 1
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            40 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 0
            41 zpos:
                    flags: range
                    values: 0 3
                    value: 0
            42 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            43 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            44 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            45 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    46      0       0       0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            48 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 2
            49 zpos:
                    flags: range
                    values: 0 3
                    value: 2
            50 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            51 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            52 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            53 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    54      0       0       0,0             0,0     0               0x00000003
      formats: RG16 RX12 YUYV AR15 RA24 NV12 RA12 XR24 RG24 UYVY AR12 XR15 AR24 XR12 RX24
      props:
            8 type:
                    flags: immutable enum
                    enums: Overlay=0 Primary=1 Cursor=2
                    value: 0
            30 IN_FORMATS:
                    flags: immutable blob
                    blobs:
    
                    value:
                            01000000000000000f00000018000000
                            01000000580000005247313652583132
                            5955595641523135524132344e563132
                            52413132585232345247323455595659
                            41523132585231354152323458523132
                            5258323400000000ff7f000000000000
                            00000000000000000000000000000000
                    in_formats blob decoded:
                             RG16:  LINEAR
                             RX12:  LINEAR
                             YUYV:  LINEAR
                             AR15:  LINEAR
                             RA24:  LINEAR
                             NV12:  LINEAR
                             RA12:  LINEAR
                             XR24:  LINEAR
                             RG24:  LINEAR
                             UYVY:  LINEAR
                             AR12:  LINEAR
                             XR15:  LINEAR
                             AR24:  LINEAR
                             XR12:  LINEAR
                             RX24:  LINEAR
            56 rotation:
                    flags: bitmask
                    values: rotate-0=0x1 rotate-90=0x2 rotate-180=0x4 rotate-270=0x8 reflect-x=0x10 reflect-y=0x20
                    value: 1
            31 zorder:
                    flags: range
                    values: 0 3
                    value: 3
            57 zpos:
                    flags: range
                    values: 0 3
                    value: 3
            58 alpha:
                    flags: range
                    values: 0 65535
                    value: 65535
            59 pixel blend mode:
                    flags: enum
                    enums: Pre-multiplied=0 Coverage=1
                    value: 0
            60 COLOR_ENCODING:
                    flags: enum
                    enums: ITU-R BT.601 YCbCr=0 ITU-R BT.709 YCbCr=1
                    value: 0
            61 COLOR_RANGE:
                    flags: enum
                    enums: YCbCr limited range=0 YCbCr full range=1
                    value: 1
    
    Frame buffers:
    id      size    pitch
    

    Atleast the following doesn't show on EVM.

    modetest             
    trying to open device 'i915'...failed   
    trying to open device 'amdgpu'...failed 
    trying to open device 'radeon'...failed 
    trying to open device 'nouveau'...failed
    trying to open device 'vmwgfx'...failed 
    trying to open device 'omapdrm'...done  
    Encoders:                               
    id      crtc    type    possible crtcs  possible clones
    62      65      TMDS    0x00000001      0x00000001
    63      67      TMDS    0x00000002      0x00000002
    
    Connectors:
    id      encoder status          name            size (mm)       modes   encoders
    64      62      connected       DPI-1           85x154          1       62
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 1024x600 59.99 1024 1104 1264 1344 600 606 629 635 51200 flags: phsync, pvsync; type: preferred, driver
      props:
            1 EDID:
                    flags: immutable blob
                    blobs:
    
                    value:
            2 DPMS:
                    flags: enum
                    enums: On=0 Standby=1 Suspend=2 Off=3
                    value: 0
            5 link-status:
                    flags: enum
                    enums: Good=0 Bad=1
                    value: 0
            6 non-desktop:
                    flags: immutable range
                    values: 0 1
                    value: 0
            4 TILE:
                    flags: immutable blob
                    blobs:
    
                    value:
    

    What is this DPI-1? Does it represent my LCD? (I have shared with you the dts for display node already)!

    Also, running kmscube on my board still fails as follows:-

    kmscube 
    MESA: info: Loaded libpvr_dri_support.so
    PVR:(Error): OpenServices: PVRDRMOpenRender failed [0, ]
    PVR:(Error): PVRSRVConnect: Unable to open connection. [0, ]
    PVR:(Error): Couldn't connect to services [0, ]
    PVR:(Error): PVRDRIEGLGlobalDataInit: PVR Services initialisation failed [0, ]
    PVR:(Error): PVRDRICreateScreenImpl: Couldn't create EGL global data [0, ]
    MESA: info: Unloaded libpvr_dri_support.so
    MESA-LOADER: failed to open zink: /usr/lib/dri/zink_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/dri, suffix _dri)
    failed to load driver: zink
    Using display 0x1ae858 with EGL version 1.4
    ===================================
    EGL information:
      version: "1.4"
      vendor: "Mesa Project"
      client extensions: "EGL_EXT_client_extensions EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug"
      display extensions: "EGL_ANDROID_blob_cache EGL_EXT_buffer_age EGL_EXT_image_dma_buf_import EGL_EXT_image_dma_buf_import_modifiers EGL_EXT_image_gl_colorspace EGL_EXT_yuv_surface EGL_KHR_"
    ===================================
    OpenGL ES 2.x information:
      version: "OpenGL ES 3.1 Mesa 22.3.5 (git-c9f0919367)"
      shading language version: "OpenGL ES GLSL ES 3.10"
      vendor: "Mesa/X.org"
      renderer: "softpipe"
      extensions: "GL_EXT_blend_minmax GL_EXT_multi_draw_arrays GL_EXT_texture_filter_anisotropic GL_EXT_texture_compression_s3tc GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc"
    ===================================
    failed to set mode: Permission denied
    

    But LCD on my custom board is flickering as in video below:-

    So LCD is ported but partially but need to resolve this flickering.

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Also I wanted to port keypad too, so I added the following entry in my dts(copied from 6.03 SDK) and enabled CONFIG_KEYBOARD_MATRIX=y and CONFIG_KEYBOARD_OMAP4=y in .config.

     keypad: keypad@4ae1c000 {
                            compatible = "ti,omap4-keypad";
                            reg = <0x4ae1c000 0x100>;
                            interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>;
                            keypad,num-rows = <4>;
                            keypad,num-columns = <4>;
                            linux,input-no-autorepeat;
                            linux,keymap = <
                                    0x00000041 0x00010042 0x00020043 0x00030044
                                    0x01000045 0x01010046 0x01020047 0x01030048
                                    0x02000049 0x0201004a 0x0202004b 0x0203004c
                                    0x0300004d 0x0301004e 0x0302004f 0x03030050
                                    >;
                            status = "okay";
                    };


    Upon compiling and booting the kernel I am getting the following error in boot logs

    [    0.325927] omap4-keypad 4ae1c00000000100.keypad: no base address specified
    [    0.325958] omap4-keypad: probe of 4ae1c00000000100.keypad failed with error -22
    

    Please help for all these issues. 

  • Josue,

    Have you seen my latest post above?

    Please reply as early as possible as we are stuck with issues ! 

    Thanks!

  • Hello Vishal,

    I was not able to respond on Friday since E2E was down for maintenance. Unfortunately I am low on bandwidth at the moment. I will have to return to your thread later this week.

    -Josue

  • Ok, Please do it at the earliest as we are stuck with the issues reported !

  • Vishal,

    I should have some time tomorrow to go over this thread.

    Best,

    Josue

  • Vishal,

    Why is this error coming on am5728 EVM booted with 9.03 PS? 

    The warning for the DRM bridge already enabled is a known issue and a JIRA has been filed. So far no issues have been reported from it other than the warning. The LCD screen on our EVM works just fine despite the warning.

    I have reproduced the issue with KMSCUBE locally and have engaged with the Dev team to see what is going on with that test. I do not think this is related with the LCD issue, so please open a "new thread"/"related question" for this issue.

    Atleast the following doesn't show on EVM.

    Can you elaborate on this? Could you please clarify as to what you are trying to report.

    What is this DPI-1? Does it represent my LCD?

    I assume it is. it matches the resolution on your DTS.  DPI stands for Digital Parallel Interface which I assume is how you are connecting to the LCD.

    This is how the LCD shows on the TI EVM:

    id      encoder status          name            size (mm)       modes   encoders
    64      62      connected       DPI-1           152x91          1       62
      modes:
            index name refresh (Hz) hdisp hss hse htot vdisp vss vse vtot
      #0 800x480 59.52 800 1010 1040 1056 480 502 515 525 33000 flags: nhsync, nvsync; type: preferred, driver
    

    For the Keyboard issue, also move to a new thread please.

    Best,

    -Josue

  • Quick follow up on the kmscube issue. The error you are seeing is because you are still running Weston.

    See:

    root@am57xx-evm:~# kmscube      
    MESA: info: Loaded libpvr_dri_support.so
    Using display 0x1a21b8 with EGL version 1.4
    ===================================
    EGL information:
      version: "1.4"
      vendor: "Mesa Project"
      client extensions: "EGL_EXT_client_extensions EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug EGL_EXT_platf"
      display extensions: "EGL_EXT_buffer_age EGL_EXT_create_context_robustness EGL_EXT_yuv_surface EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_"
    ===================================
    OpenGL ES 2.x information:
      version: "OpenGL ES 2.0 build 1.17@4948957"
      shading language version: "OpenGL ES GLSL ES 1.00 build 1.17@4948957"
      vendor: "Imagination Technologies"
      renderer: "PowerVR SGX 544MP"
      extensions: "GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_depth_texture GL_OES_egl_sync GL_OES_element_index_uint GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_fbo_render_mipmap GL_OES"
    ===================================
    failed to set mode: Permission denied
    root@am57xx-evm:~# 
    root@am57xx-evm:~# 
    root@am57xx-evm:~# 
    root@am57xx-evm:~# system
    systemctl                       systemd-creds                   systemd-hwdb                    systemd-notify                  systemd-stdio-bridge            systemd-umount
    systemd-ask-password            systemd-delta                   systemd-id128                   systemd-path                    systemd-sysext                  
    systemd-cat                     systemd-detect-virt             systemd-inhibit                 systemd-resolve                 systemd-sysusers                
    systemd-cgls                    systemd-dissect                 systemd-machine-id-setup        systemd-run                     systemd-tmpfiles                
    systemd-cgtop                   systemd-escape                  systemd-mount                   systemd-socket-activate         systemd-tty-ask-password-agent  
    root@am57xx-evm:~# systemctl stop weston
    Warning: Stopping weston.service, but it can still be activated by:
      weston.socket
    root@am57xx-evm:~# kmscube
    MESA: info: Loaded libpvr_dri_support.so
    Using display 0x1a21b8 with EGL version 1.4
    ===================================
    EGL information:
      version: "1.4"
      vendor: "Mesa Project"
      client extensions: "EGL_EXT_client_extensions EGL_EXT_device_base EGL_EXT_device_enumeration EGL_EXT_device_query EGL_EXT_platform_base EGL_KHR_client_get_all_proc_addresses EGL_KHR_debug EGL_EXT_platf"
      display extensions: "EGL_EXT_buffer_age EGL_EXT_create_context_robustness EGL_EXT_yuv_surface EGL_KHR_config_attribs EGL_KHR_create_context EGL_KHR_fence_sync EGL_KHR_get_all_proc_addresses EGL_KHR_gl_"
    ===================================
    OpenGL ES 2.x information:
      version: "OpenGL ES 2.0 build 1.17@4948957"
      shading language version: "OpenGL ES GLSL ES 1.00 build 1.17@4948957"
      vendor: "Imagination Technologies"
      renderer: "PowerVR SGX 544MP"
      extensions: "GL_OES_compressed_ETC1_RGB8_texture GL_OES_depth24 GL_OES_depth_texture GL_OES_egl_sync GL_OES_element_index_uint GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_fbo_render_mipmap GL_OES"
    ===================================
    Rendered 119 frames in 2.000366 sec (59.489107 fps)
    Rendered 238 frames in 4.000732 sec (59.489107 fps)
    Rendered 357 frames in 6.001068 sec (59.489410 fps)
    Rendered 476 frames in 8.001434 sec (59.489334 fps)
    Rendered 595 frames in 10.001770 sec (59.489470 fps)
    Rendered 714 frames in 12.002136 sec (59.489410 fps)
    Rendered 833 frames in 14.002472 sec (59.489496 fps)
    

    If you disable weston you should be able to see the kmscube example.

    This is also explained in the Documentation here: https://software-dl.ti.com/processor-sdk-linux/esd/AM57X/09_03_06_05/exports/docs/linux/Foundational_Components/Graphics/Common/Display.html#using-connector-id-and-plane-id

    -Josue

  • Josue,


    Thanks for the update. LCD is working fine now on my custom board.

    But touchscreen is not working i.e. the probe function is failing in this driver :- drivers/input/touchscreen/edt-ft5x06.c (See logs below)

    (I had also put prints in the driver.)

    root@am57xx-evm:~# dmesg | grep edt
    [    0.330474] ledtrig-cpu: registered to indicate activity on CPUs
    [    1.970001] VM********************* File: drivers/input/touchscreen/edt-ft5x06.c, Line: 1249, Function: edt_ft5x06_ts_probe ****************************
    [    1.985382] edt_ft5x06 4-0038: supply vcc not found, using dummy regulator
    [    1.992523] edt_ft5x06 4-0038: supply iovcc not found, using dummy regulator
    [    2.025268] VM********************* File: drivers/input/touchscreen/edt-ft5x06.c, Line: 987, Function: edt_ft5x06_ts_identify ****************************
    [    2.045410] VM********************* File: drivers/input/touchscreen/edt-ft5x06.c, Line: 159, Function: edt_ft5x06_ts_readwrite ****************************
    [    2.117431] edt_ft5x06 4-0038: touchscreen probe failed
    [    2.122680] VM********************* File: drivers/input/touchscreen/edt-ft5x06.c, Line: 1239, Function: edt_ft5x06_disable_regulators ****************************
    [    2.170379] edt_ft5x06: probe of 4-0038 failed with error -121
    


    Here is the dts entry for touchscreen.

    /* [00] :: Added Touch panel entries */
    &i2c5 {
    status = "okay";
    clock-frequency = <400000>;
    
    polytouch: edt-ft5x06@38 {
    compatible = "edt,edt-ft5x06";
    reg = <0x38>;
    attb-gpio = <&gpio5 9 GPIO_ACTIVE_HIGH>;
    interrupt-parent = <&gpio5>;
    interrupts = <9 0>;
    threshold = <20>;
    touchscreen-size-x = <1024>;
    touchscreen-size-y = <600>;
    wakeup-source;
    };
    
    };
     

    Please help in resolving the touch issue!

    For the Keyboard issue, also move to a new thread please.

     I will open a new thread for it.

    Also there are issues in porting Omnivision ov5640 camera too. Omnivision ov5640 camera driver is getting loaded but the TI's vip driver is not registering it as /dev/video1 (capture device) Should I move camera to a new thread too?

  • Vishal,

    Yes each new subject is a new thread. Can you share what steps or changes helped make your display work?

    Did you have to change any timing parameters?

    The way E2E helps customers the best is if the issue and resolution are on one single thread. Easy read, fast debug.

    -Josue

  • Josue,

    For resolving LCD flickering issue, I just commented the following entries in dtsi file.

        leds {
                    compatible = "gpio-leds";
    
                    led0 {
                            label = "beagle-x15:usr0";
                            gpios = <&gpio7 9 GPIO_ACTIVE_HIGH>;
                            linux,default-trigger = "heartbeat";
                            default-state = "off";
                    };
    
                    led1 {
                            label = "beagle-x15:usr1";
                            gpios = <&gpio7 8 GPIO_ACTIVE_HIGH>;
                            linux,default-trigger = "cpu0";
                            default-state = "off";
                    };
    
                    led2 {
                            label = "beagle-x15:usr2";
                            gpios = <&gpio7 14 GPIO_ACTIVE_HIGH>;
                            linux,default-trigger = "mmc0";
                            default-state = "off";
                    };
    
                    led3 {
                            label = "beagle-x15:usr3";
                            gpios = <&gpio7 15 GPIO_ACTIVE_HIGH>;
                            linux,default-trigger = "disk-activity";
                            default-state = "off";
                    };
            };
    

  • Vishal,

    I suppose there was a conflict in the GPIO signals you were using gpio7 14 for the LED and the 

    attr-gpios = <&gpio7 14 GPIO_ACTIVE_HIGH>; //LCD GPIO [AKSHI] changed in VIC2

    Best,

    Josue

  • Josue,

    Oh you found the culprit.
    Thanks!