<?xml version="1.0" encoding="utf-8"?>
<!--  Copyright (C) 2015/2016 Motorola Mobility, Lenovo Company -->
<validation match="ro.boot.device">
	<!-- device describes a version of mapping logic applicable to a matching device -->
	<!-- the device string to do case-insensitive substring match against "name" is
		to be queried from property indicated by "match", or its BL equivalent -->
	<!-- incremented version tells boot script to update the validation tags from this file -->

	<device name="rtwo" version="1.8">

		<!-- Features list variable hardware components for this device -->
		<features>
			<string-array name=".features">
				<!-- RF banding -->
				<item>radio</item>
				<!-- RAM size -->
				<item>ram</item>
				<!-- Storage size -->
				<item>storage</item>
				<!-- Dual SIM function -->
				<item>dualsim</item>
				<!-- Front color -->
				<item>frontcolor</item>
				<!-- Fingerprint sensor -->
				<item>fps</item>
				<!-- Near Field Communication function -->
				<item>nfc</item>
				<!-- barometer -->
				<item>barometer</item>
				<!-- eCompass -->
				<item>ecompass</item>
				<!-- uwb -->
				<item>uwb</item>
				<!-- btvnm -->
				<item>btnvm</item>
				<!-- Display port -->
				<item>displayport</item>
				<!-- esim id -->
				<item>esimid</item>
			</string-array>
		</features>

		<!-- Attributes list allowed values for features -->
		<attributes>
			<string-array name=".attributes">
				<!-- range is a comma-separated list of allowed string values -->
				<item>.range</item>
				<!-- cmdline items must be exported to kernel cmdline, with prefix given in the value -->
				<item>.cmdline</item>
				<!-- chosen items must be exported to kernel devtree, with prefix given in the value -->
				<item>.chosen</item>
				<!-- system items must be exported as system property, with prefix given in the value -->
				<item>.system</item>
				<!-- same format as before, plus new attribute ".auto" -->
				<!-- auto indicates BL should auto-fill respective tag if it is empty -->
				<!-- this can work either using "hwid", "hwprobe" or "uspace" method -->
				<item>.auto</item>
			</string-array>
		</attributes>

		<!-- Constraints describe interpretation of attributes, and may contain data to feed to BL -->
		<constraints>
			<!-- look up value by matching "hwid" table, combination with current device,
				then parsing out field indicated by "index",
				and then translating the field as prescribed by "map" -->
			<string name="radio/.auto">key=hwid;index=2;map=1:PRC,2:ROW,3:NA,4:VZW</string>
			<string name="radio/.cmdline">androidboot.</string>
			<string name="radio/.system">ro.vendor.hw.</string>
			<string-array name="radio/.range">
				<item>PRC</item>
				<item>ROW</item>
				<item>NA</item>
				<item>VZW</item>
			</string-array>

			<!-- use result of ram HW detection to fill the field -->
			<string name="ram/.auto">key=hwprobe;index=__ram</string>
			<string name="ram/.system">ro.vendor.hw.</string>
			<string-array name="ram/.range">
				<item>8GB</item>
				<item>12GB</item>
			</string-array>

			<!-- use result of storage HW detection to fill the field -->
			<string name="storage/.auto">key=hwprobe;index=__storage</string>
			<string name="storage/.system">ro.vendor.hw.</string>
			<string-array name="storage/.range">
				<item>128GB</item>
				<item>256GB</item>
				<item>512GB</item>
			</string-array>

			<string name="dualsim/.auto">default=true</string>
			<string name="dualsim/.system">ro.vendor.hw.</string>
			<string-array name="dualsim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<!-- frontcolor has to be programmed explicitly -->
			<string name="frontcolor/.system">ro.vendor.hw.</string>
			<string-array name="frontcolor/.range">
				<item>gray</item>
				<item>red</item>
				<item>other</item>
			</string-array>

			<string name="fps/.auto">default=true</string>
			<string name="fps/.chosen">mmi,</string>
			<string name="fps/.system">ro.vendor.hw.</string>
			<string-array name="fps/.range">
				<item>true</item>
			</string-array>

			<string name="ecompass/.auto">default=true</string>
			<string name="ecompass/.chosen">mmi,</string>
			<string name="ecompass/.system">ro.vendor.hw.</string>
			<string-array name="ecompass/.range">
				<item>true</item>
			</string-array>

			<string name="barometer/.auto">key=hwid;index=2;map=1:false,2:false,3:true,4:true</string>
			<string name="barometer/.system">ro.vendor.hw.</string>
			<string-array name="barometer/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="nfc/.auto">key=hwid;index=2;map=1:ese_nq,2:nq,3:nq,4:nq</string>
			<string name="nfc/.chosen">mmi,</string>
			<string name="nfc/.system">ro.vendor.hw.</string>
			<string-array name="nfc/.range">
				<item>ese_nq</item>
				<item>nq</item>
			</string-array>

			<string name="uwb/.auto">default=false</string>
			<string name="uwb/.chosen">mmi,</string>
			<string name="uwb/.system">ro.vendor.hw.</string>
			<string-array name="uwb/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

                        <string name="btnvm/.auto">key=hwid;index=2;map=1:epa,2:epa,3:epa,4:ipa</string>
			<string name="btnvm/.system">ro.vendor.hw.</string>
			<string-array name="btnvm/.range">
				<item>epa</item>
				<item>ipa</item>
			</string-array>

			<string name="displayport/.auto">default=true</string>
			<string name="displayport/.system">ro.vendor.hw.</string>
			<string name="displayport/.chosen">mmi,</string>
			<string-array name="displayport/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="esimid/.auto">uspace=config;name=esimid</string>
			<string name="esimid/.system">ro.vendor.</string>
		</constraints>

		<mappings>
			<!-- Products describe mapping of feature combinations to marketing names,
				to be set in property indicated by "export" -->
			<products export="ro.vendor.product.display" default="motorola edge 40 pro">
			</products>

			<!-- Variants describe mapping of feature combinations to device fingerprints,
				to be set in property indicated by "export" -->
			<variants export="ro.vendor.hw.variant" append="ro.vendor.product.device,ro.vendor.product.name,ro.product.device,ro.product.name">
				<!-- ... same format as before ... -->
			</variants>

			<!-- SKUs describe mapping of feature combinations to factory SKUs,
                                to be set in property indicated by "export" -->
			<skus export="ro.vendor.product.hardware.sku.variant">
				<!-- ... same format as variants/products ... -->
				<variant name="n">
					<string name="dualsim">false</string>
					<string name="barometer">false</string>
					<string name="nfc">nq</string>
				</variant>
				<variant name="np">
					<string name="dualsim">false</string>
					<string name="barometer">true</string>
					<string name="nfc">nq</string>
				</variant>
				<variant name="dn">
					<string name="dualsim">true</string>
					<string name="barometer">false</string>
					<string name="nfc">nq</string>
				</variant>
				<variant name="dnp">
					<string name="dualsim">true</string>
					<string name="barometer">true</string>
					<string name="nfc">nq</string>
				</variant>
				<variant name="dne">
					<string name="dualsim">true</string>
					<string name="barometer">false</string>
					<string name="nfc">ese_nq</string>
                                </variant>
			</skus>

                        <!--IKSWT-15731 charger_feature parts describe the mapping of feature wlc -->
			<charger_feature export="ro.vendor.hw.wlc" default="true">
				<variant name="false">
					<string name="radio">PRC</string>
				</variant>
			</charger_feature>
		</mappings>
	</device>

	<device name="oberon" version="1.3">

		<!-- Features list variable hardware components for this device -->
		<features>
			<string-array name=".features">
				<!-- RF banding -->
				<item>radio</item>
				<!-- RAM size -->
				<item>ram</item>
				<!-- Storage size -->
				<item>storage</item>
				<!-- Dual SIM function -->
				<item>dualsim</item>
				<!-- Front color -->
				<item>frontcolor</item>
				<!-- Fingerprint sensor -->
				<item>fps</item>
				<!-- Near Field Communication function -->
				<item>nfc</item>
				<!-- barometer -->
				<item>barometer</item>
				<!-- eCompass -->
				<item>ecompass</item>
				<!-- uwb -->
				<item>uwb</item>
				<!-- btvnm -->
				<item>btnvm</item>
				<!-- Display port -->
				<item>displayport</item>
				<!-- esim id -->
				<item>esimid</item>
			</string-array>
		</features>

		<!-- Attributes list allowed values for features -->
		<attributes>
			<string-array name=".attributes">
				<!-- range is a comma-separated list of allowed string values -->
				<item>.range</item>
				<!-- cmdline items must be exported to kernel cmdline, with prefix given in the value -->
				<item>.cmdline</item>
				<!-- chosen items must be exported to kernel devtree, with prefix given in the value -->
				<item>.chosen</item>
				<!-- system items must be exported as system property, with prefix given in the value -->
				<item>.system</item>
				<!-- same format as before, plus new attribute ".auto" -->
				<!-- auto indicates BL should auto-fill respective tag if it is empty -->
				<!-- this can work either using "hwid", "hwprobe" or "uspace" method -->
				<item>.auto</item>
			</string-array>
		</attributes>

		<!-- Constraints describe interpretation of attributes, and may contain data to feed to BL -->
		<constraints>
			<!-- look up value by matching "hwid" table, combination with current device,
				then parsing out field indicated by "index",
				and then translating the field as prescribed by "map" -->
			<string name="radio/.auto">default=NA</string>
			<string name="radio/.cmdline">androidboot.</string>
			<string name="radio/.system">ro.vendor.hw.</string>
			<string-array name="radio/.range">
				<item>NA</item>
			</string-array>

			<!-- use result of ram HW detection to fill the field -->
			<string name="ram/.auto">key=hwprobe;index=__ram</string>
			<string name="ram/.system">ro.vendor.hw.</string>
			<string-array name="ram/.range">
				<item>12GB</item>
			</string-array>

			<!-- use result of storage HW detection to fill the field -->
			<string name="storage/.auto">key=hwprobe;index=__storage</string>
			<string name="storage/.system">ro.vendor.hw.</string>
			<string-array name="storage/.range">
				<item>256GB</item>
			</string-array>

			<string name="dualsim/.auto">default=false</string>
			<string name="dualsim/.system">ro.vendor.hw.</string>
			<string-array name="dualsim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<!-- frontcolor has to be programmed explicitly -->
			<string name="frontcolor/.system">ro.vendor.hw.</string>
			<string-array name="frontcolor/.range">
				<item>gray</item>
				<item>red</item>
				<item>other</item>
			</string-array>

			<string name="fps/.auto">default=false</string>
			<string name="fps/.chosen">mmi,</string>
			<string name="fps/.system">ro.vendor.hw.</string>
			<string-array name="fps/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="ecompass/.auto">default=false</string>
			<string name="ecompass/.chosen">mmi,</string>
			<string name="ecompass/.system">ro.vendor.hw.</string>
			<string-array name="ecompass/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="barometer/.auto">default=true</string>
			<string name="barometer/.system">ro.vendor.hw.</string>
			<string-array name="barometer/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="nfc/.auto">default=nq</string>
			<string name="nfc/.chosen">mmi,</string>
			<string name="nfc/.system">ro.vendor.hw.</string>
			<string-array name="nfc/.range">
				<item>nq</item>
				<item>ese_nq</item>
				<item>false</item>
			</string-array>

			<string name="uwb/.auto">default=true</string>
			<string name="uwb/.chosen">mmi,</string>
			<string name="uwb/.system">ro.vendor.hw.</string>
			<string-array name="uwb/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

            <string name="btnvm/.auto">default=false</string>
			<string name="btnvm/.system">ro.vendor.hw.</string>
			<string-array name="btnvm/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="displayport/.auto">default=true</string>
			<string name="displayport/.system">ro.vendor.hw.</string>
			<string name="displayport/.chosen">mmi,</string>
			<string-array name="displayport/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="esimid/.auto">uspace=config;name=esimid</string>
			<string name="esimid/.system">ro.vendor.</string>
		</constraints>

		<mappings>
			<!-- Products describe mapping of feature combinations to marketing names,
				to be set in property indicated by "export" -->
			<products export="ro.vendor.product.display" default="motorola oberon">
			</products>

			<!-- Variants describe mapping of feature combinations to device fingerprints,
				to be set in property indicated by "export" -->
			<variants export="ro.vendor.hw.variant" append="ro.vendor.product.device,ro.vendor.product.name,ro.product.device,ro.product.name">
				<!-- ... same format as before ... -->
			</variants>

			<!-- SKUs describe mapping of feature combinations to factory SKUs,
                                to be set in property indicated by "export" -->
			<skus export="ro.vendor.product.hardware.sku.variant">
				<!-- ... same format as variants/products ... -->
				<variant name="n">
					<string name="dualsim">false</string>
					<string name="nfc">true</string>
				</variant>
				<variant name="dn">
					<string name="dualsim">true</string>
					<string name="nfc">true</string>
				</variant>
			</skus>

		</mappings>
	</device>

	<device name="ctwo" version="1.4">

		<!-- Features list variable hardware components for this device -->
		<features>
			<string-array name=".features">
				<!-- RF banding -->
				<item>radio</item>
				<!-- RAM size -->
				<item>ram</item>
				<!-- Storage size -->
				<item>storage</item>
				<!-- Dual SIM function -->
				<item>dualsim</item>
				<!-- Front color -->
				<item>frontcolor</item>
				<!-- Fingerprint sensor -->
				<item>fps</item>
				<!-- Near Field Communication function -->
				<item>nfc</item>
				<!-- barometer -->
				<item>barometer</item>
				<!-- eCompass -->
				<item>ecompass</item>
				<!-- esim -->
				<item>esim</item>
				<!-- uwb -->
				<item>uwb</item>
				<!-- esim id -->
				<item>esimid</item>
				<!--SKU variant -->
				<item>sku_variant</item>
			</string-array>
		</features>

		<!-- Attributes list allowed values for features -->
		<attributes>
			<string-array name=".attributes">
				<!-- range is a comma-separated list of allowed string values -->
				<item>.range</item>
				<!-- cmdline items must be exported to kernel cmdline, with prefix given in the value -->
				<item>.cmdline</item>
				<!-- chosen items must be exported to kernel devtree, with prefix given in the value -->
				<item>.chosen</item>
				<!-- system items must be exported as system property, with prefix given in the value -->
				<item>.system</item>
				<!-- same format as before, plus new attribute ".auto" -->
				<!-- auto indicates BL should auto-fill respective tag if it is empty -->
				<!-- this can work either using "hwid", "hwprobe" or "uspace" method -->
				<item>.auto</item>
			</string-array>
		</attributes>

		<!-- Constraints describe interpretation of attributes, and may contain data to feed to BL -->
		<constraints>
			<!-- look up value by matching "hwid" table, combination with current device,
				then parsing out field indicated by "index",
				and then translating the field as prescribed by "map" -->
			<string name="radio/.auto">key=hwid;index=2;map=1:PRC,2:ROW,3:NA,4:INDIA</string>
			<string name="radio/.cmdline">androidboot.</string>
			<string name="radio/.system">ro.vendor.hw.</string>
			<string-array name="radio/.range">
				<item>PRC</item>
				<item>ROW</item>
				<item>NA</item>
				<item>INDIA</item>
			</string-array>

			<!-- use result of ram HW detection to fill the field -->
			<string name="ram/.auto">key=hwprobe;index=__ram</string>
			<string name="ram/.system">ro.vendor.hw.</string>
			<string-array name="ram/.range">
				<item>8GB</item>
				<item>12GB</item>
			</string-array>

			<!-- use result of storage HW detection to fill the field -->
			<string name="storage/.auto">key=hwprobe;index=__storage</string>
			<string name="storage/.system">ro.vendor.hw.</string>
			<string-array name="storage/.range">
				<item>128GB</item>
				<item>256GB</item>
				<item>512GB</item>
			</string-array>

			<string name="dualsim/.auto">default=true</string>
			<string name="dualsim/.system">ro.vendor.hw.</string>
			<string-array name="dualsim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="esim/.auto">default=false</string>
			<string name="esim/.system">ro.vendor.hw.</string>
			<string-array name="esim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<!-- frontcolor has to be programmed explicitly -->
			<string name="frontcolor/.system">ro.vendor.hw.</string>
			<string-array name="frontcolor/.range">
				<item>green</item>
				<item>golden</item>
				<item>other</item>
			</string-array>

			<string name="fps/.auto">default=true</string>
			<string name="fps/.chosen">mmi,</string>
			<string name="fps/.system">ro.vendor.hw.</string>
			<string-array name="fps/.range">
				<item>true</item>
			</string-array>

			<string name="ecompass/.auto">default=true</string>
			<string name="ecompass/.chosen">mmi,</string>
			<string name="ecompass/.system">ro.vendor.hw.</string>
			<string-array name="ecompass/.range">
				<item>true</item>
			</string-array>

			<string name="barometer/.auto">key=hwid;index=2;map=1:false,2:false,3:true,4:false</string>
			<string name="barometer/.system">ro.vendor.hw.</string>
			<string-array name="barometer/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="nfc/.auto">key=hwid;index=2;map=1:ese_st,2:ese_st,3:ese_st,4:ese_st</string>
			<string name="nfc/.chosen">mmi,</string>
			<string name="nfc/.system">ro.vendor.hw.</string>
			<string-array name="nfc/.range">
				<item>ese_st</item>
				<item>st</item>
			</string-array>

			<string name="uwb/.auto">key=hwid;index=2;map=1:false,2:qorvo,3:qorvo,4:false</string>
			<string name="uwb/.chosen">mmi,</string>
			<string name="uwb/.system">ro.vendor.hw.</string>
			<string-array name="uwb/.range">
				<item>qorvo</item>
				<item>false</item>
			</string-array>

			<string name="sku_variant/.cmdline">androidboot.</string>
			<string-array name="sku_variant/.range">
				<item>uw</item>
			</string-array>

			<string name="esimid/.auto">uspace=config;name=esimid</string>
			<string name="esimid/.system">ro.vendor.</string>
		</constraints>

		<mappings>
			<sku-variants export="ro.vendor.hw.sku_variant" writeback="sku_variant">
				<!-- ... same format as before ... -->
				<variant name="uw">
					<string name="uwb">qorvo</string>
				</variant>
			</sku-variants>

			<!-- Products describe mapping of feature combinations to marketing names,
				to be set in property indicated by "export" -->
			<products export="ro.vendor.product.display" default="motorola edge 40 pro">
			</products>

			<!-- Variants describe mapping of feature combinations to device fingerprints,
				to be set in property indicated by "export" -->
			<variants export="ro.vendor.hw.variant" append="ro.vendor.product.device,ro.vendor.product.name,ro.product.device,ro.product.name">
				<!-- ... same format as before ... -->
			</variants>

			<!-- SKUs describe mapping of feature combinations to factory SKUs,
                                to be set in property indicated by "export" -->
			<skus export="ro.vendor.product.hardware.sku.variant">
				<!-- ... same format as variants/products ... -->
				<variant name="ne">
					<string name="dualsim">false</string>
					<string name="barometer">false</string>
					<string name="nfc">ese_st</string>
					<string name="uwb">false</string>
				</variant>
				<variant name="neu">
					<string name="dualsim">false</string>
					<string name="barometer">false</string>
					<string name="nfc">ese_st</string>
					<string name="uwb">qorvo</string>
				</variant>
				<variant name="dne">
					<string name="dualsim">true</string>
					<string name="barometer">false</string>
					<string name="nfc">ese_st</string>
					<string name="uwb">false</string>
				</variant>
				<variant name="dneu">
					<string name="dualsim">true</string>
					<string name="barometer">false</string>
					<string name="nfc">ese_st</string>
					<string name="uwb">qorvo</string>
				</variant>
			</skus>

                        <!--IKSWT-15731 charger_feature parts describe the mapping of feature wlc -->
			<charger_feature export="ro.vendor.hw.wlc" default="true">
				<variant name="false">
					<string name="radio">PRC</string>
				</variant>
			</charger_feature>
		</mappings>
	</device>

	<device name="arc" version="1.1">

		<!-- Features list variable hardware components for this device -->
		<features>
			<string-array name=".features">
				<!-- RF banding -->
				<item>radio</item>
				<!-- RAM size -->
				<item>ram</item>
				<!-- Storage size -->
				<item>storage</item>
				<!-- Dual SIM function -->
				<item>dualsim</item>
				<!-- Front color -->
				<item>frontcolor</item>
				<!-- Fingerprint sensor -->
				<item>fps</item>
				<!-- Near Field Communication function -->
				<item>nfc</item>
				<!-- barometer -->
				<item>barometer</item>
				<!-- eCompass -->
				<item>ecompass</item>
				<!-- esim -->
				<item>esim</item>
				<!-- uwb -->
				<item>uwb</item>
				<!-- esim id -->
				<item>esimid</item>
			</string-array>
		</features>

		<!-- Attributes list allowed values for features -->
		<attributes>
			<string-array name=".attributes">
				<!-- range is a comma-separated list of allowed string values -->
				<item>.range</item>
				<!-- cmdline items must be exported to kernel cmdline, with prefix given in the value -->
				<item>.cmdline</item>
				<!-- chosen items must be exported to kernel devtree, with prefix given in the value -->
				<item>.chosen</item>
				<!-- system items must be exported as system property, with prefix given in the value -->
				<item>.system</item>
				<!-- same format as before, plus new attribute ".auto" -->
				<!-- auto indicates BL should auto-fill respective tag if it is empty -->
				<!-- this can work either using "hwid", "hwprobe" or "uspace" method -->
				<item>.auto</item>
			</string-array>
		</attributes>

		<!-- Constraints describe interpretation of attributes, and may contain data to feed to BL -->
		<constraints>
			<!-- look up value by matching "hwid" table, combination with current device,
				then parsing out field indicated by "index",
				and then translating the field as prescribed by "map" -->
			<string name="radio/.auto">key=hwid;index=2;map=1:PRC,2:ROW,3:NA</string>
			<string name="radio/.cmdline">androidboot.</string>
			<string name="radio/.system">ro.vendor.hw.</string>
			<string-array name="radio/.range">
				<item>PRC</item>
				<item>ROW</item>
				<item>NA</item>
			</string-array>

			<!-- use result of ram HW detection to fill the field -->
			<string name="ram/.auto">key=hwprobe;index=__ram</string>
			<string name="ram/.system">ro.vendor.hw.</string>
			<string-array name="ram/.range">
				<item>8GB</item>
				<item>12GB</item>
			</string-array>

			<!-- use result of storage HW detection to fill the field -->
			<string name="storage/.auto">key=hwprobe;index=__storage</string>
			<string name="storage/.system">ro.vendor.hw.</string>
			<string-array name="storage/.range">
				<item>128GB</item>
				<item>256GB</item>
				<item>512GB</item>
			</string-array>

			<string name="dualsim/.auto">default=true</string>
			<string name="dualsim/.system">ro.vendor.hw.</string>
			<string-array name="dualsim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="esim/.auto">default=false</string>
			<string name="esim/.system">ro.vendor.hw.</string>
			<string-array name="esim/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<!-- frontcolor has to be programmed explicitly -->
			<string name="frontcolor/.system">ro.vendor.hw.</string>
			<string-array name="frontcolor/.range">
				<item>gray</item>
				<item>red</item>
				<item>other</item>
			</string-array>

			<string name="fps/.auto">default=true</string>
			<string name="fps/.chosen">mmi,</string>
			<string name="fps/.system">ro.vendor.hw.</string>
			<string-array name="fps/.range">
				<item>true</item>
			</string-array>

			<string name="ecompass/.auto">default=true</string>
			<string name="ecompass/.chosen">mmi,</string>
			<string name="ecompass/.system">ro.vendor.hw.</string>
			<string-array name="ecompass/.range">
				<item>true</item>
			</string-array>

			<string name="barometer/.auto">key=hwid;index=2;map=1:false,2:false,3:true</string>
			<string name="barometer/.system">ro.vendor.hw.</string>
			<string-array name="barometer/.range">
				<item>true</item>
				<item>false</item>
			</string-array>

			<string name="nfc/.auto">key=hwid;index=2;map=1:ese_st,2:ese_st,3:ese_st</string>
			<string name="nfc/.chosen">mmi,</string>
			<string name="nfc/.system">ro.vendor.hw.</string>
			<string-array name="nfc/.range">
				<item>ese_st</item>
				<item>st</item>
			</string-array>

			<string name="uwb/.auto">key=hwid;index=2;map=1:false,2:false,3:false</string>
			<string name="uwb/.chosen">mmi,</string>
			<string name="uwb/.system">ro.vendor.hw.</string>
			<string-array name="uwb/.range">
				<item>qorvo</item>
				<item>false</item>
			</string-array>

			<string name="esimid/.auto">uspace=config;name=esimid</string>
			<string name="esimid/.system">ro.vendor.</string>
		</constraints>

		<mappings>
			<!-- Products describe mapping of feature combinations to marketing names,
				to be set in property indicated by "export" -->
			<products export="ro.vendor.product.display" default="motorola edge 40 pro">
			</products>

			<!-- Variants describe mapping of feature combinations to device fingerprints,
				to be set in property indicated by "export" -->
			<variants export="ro.vendor.hw.variant" append="ro.vendor.product.device,ro.vendor.product.name,ro.product.device,ro.product.name">
				<!-- ... same format as before ... -->
			</variants>

			<!-- SKUs describe mapping of feature combinations to factory SKUs,
                                to be set in property indicated by "export" -->
			<skus export="ro.vendor.product.hardware.sku.variant">
				<!-- ... same format as variants/products ... -->
				<variant name="dne">
					<string name="dualsim">true</string>
					<string name="nfc">ese_st</string>
				</variant>
				<variant name="ne">
					<string name="dualsim">false</string>
					<string name="nfc">ese_st</string>
				</variant>
			</skus>

                        <!--IKSWT-15731 charger_feature parts describe the mapping of feature wlc -->
			<charger_feature export="ro.vendor.hw.wlc" default="true">
				<variant name="false">
					<string name="radio">PRC</string>
				</variant>
			</charger_feature>
		</mappings>
	</device>
</validation>
