| /OK3568_Linux_fs/kernel/drivers/irqchip/ |
| H A D | irq-tegra.c | 80 static struct tegra_ictlr_info *lic; variable 124 lic->ictlr_wake_mask[index] |= mask; in tegra_set_wake() 126 lic->ictlr_wake_mask[index] &= ~mask; in tegra_set_wake() 142 void __iomem *ictlr = lic->base[i]; in tegra_ictlr_suspend() 145 lic->cpu_ier[i] = readl_relaxed(ictlr + ICTLR_CPU_IER); in tegra_ictlr_suspend() 146 lic->cpu_iep[i] = readl_relaxed(ictlr + ICTLR_CPU_IEP_CLASS); in tegra_ictlr_suspend() 147 lic->cop_ier[i] = readl_relaxed(ictlr + ICTLR_COP_IER); in tegra_ictlr_suspend() 148 lic->cop_iep[i] = readl_relaxed(ictlr + ICTLR_COP_IEP_CLASS); in tegra_ictlr_suspend() 157 writel_relaxed(lic->ictlr_wake_mask[i], ictlr + ICTLR_CPU_IER_SET); in tegra_ictlr_suspend() 171 void __iomem *ictlr = lic->base[i]; in tegra_ictlr_resume() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | license.py | 151 excluded = [lic for lic in licenses if exclude_license(lic)] 152 included = [lic for lic in licenses if include_license(lic)] 174 lic = node.s 176 if license_ok(self._canonical_license(self._d, lic), 201 self.licensestr += lic 202 self.licenses.append(lic) 259 return [lic for lic in bad_licenses if pkg + ':' + lic not in exceptions]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | license_image.bbclass | 4 COMPLEMENTARY_GLOB[lic-pkgs] = "*-lic" 9 if 'lic-pkgs' in features: 10 …bb.error("'lic-pkgs' in IMAGE_FEATURES but LICENSE_CREATE_PACKAGE not enabled to generate -lic pac… 94 for lic in pkg_dic[pkg]["LICENSES"]: 97 re.sub(r'\+', '', lic)) 99 if lic == "CLOSED": 106 % (lic, pkg_dic[pkg]["PN"]), d) 130 pkg_manifest_licenses = [canonical_license(d, lic) \ 131 for lic in pkg_dic[pkg]["LICENSES"]] 134 for lic in licenses: [all …]
|
| H A D | license.bbclass | 12 LICENSE_PACKAGE_SUFFIX ??= "-lic" 294 return a if all(oe.license.license_ok(canonical_license(d, lic), 295 dont_want_licenses) for lic in a) else b
|
| H A D | core-image.bbclass | 34 # - lic-pkgs - license packages for all installed pacakges in the rootfs, requires
|
| H A D | create-spdx.bbclass | 49 ascii_licenses = [lic.decode('ascii') for lic in licenses] 96 def convert_license_to_spdx(lic, document, d, existing={}): 164 lic_split = lic.replace("(", " ( ").replace(")", " ) ").split()
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | incompatible_lic.py | 6 def lic_test(self, pn, pn_lic, lic, error_msg=None): argument 10 self.write_config("INCOMPATIBLE_LICENSE += \"%s\"" % (lic)) 59 def lic_test(self, pn, pn_lic, lic): argument 62 self.write_config("INCOMPATIBLE_LICENSE += \"%s\"" % (lic))
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/oelib/ |
| H A D | license.py | 56 if all(lic in self.preferred for lic in b):
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | spdxcheck.py | 60 … for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','): 61 if not lic in spdx.licenses: 62 … raise SPDXException(None, 'Exception %s missing license %s' %(exception, lic)) 63 spdx.exceptions[exception].append(lic)
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/focaltech_touch/ |
| H A D | focaltech_flash.c | 1215 if (!upg || !upg->func || !upg->lic || !vid) { in fts_lic_get_vid_in_host() 1225 licbuf = upg->lic; in fts_lic_get_vid_in_host() 1258 if (!upg || !upg->func || !upg->func->get_hlic_ver || !upg->lic) { in fts_lic_get_ver_in_host() 1263 ret = upg->func->get_hlic_ver(upg->lic); in fts_lic_get_ver_in_host() 1356 ret = upg->func->lic_upgrade(client, upg->lic, upg->lic_length); in fts_lic_upgrade() 1834 upg->lic = fw->fw_file; in fts_fwupg_get_fw_file()
|
| H A D | focaltech_flash.h | 150 u8 *lic; member
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/focaltech_touch_ft5436/ |
| H A D | focaltech_flash.c | 1189 if (!upg || !upg->func || !upg->lic || !vid) { in fts_lic_get_vid_in_host() 1199 licbuf = upg->lic; in fts_lic_get_vid_in_host() 1231 if (!upg || !upg->func || !upg->func->get_hlic_ver || !upg->lic) { in fts_lic_get_ver_in_host() 1236 ret = upg->func->get_hlic_ver(upg->lic); in fts_lic_get_ver_in_host() 1326 ret = upg->func->lic_upgrade(upg->lic, upg->lic_length); in fts_lic_upgrade() 1871 upg->lic = upg->fw; in fts_fwupg_get_fw_file()
|
| H A D | focaltech_flash.h | 187 u8 *lic; member
|
| /OK3568_Linux_fs/kernel/arch/s390/include/asm/ |
| H A D | sysinfo.h | 25 unsigned long lic; member
|
| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | scanpypi | 444 classifiers_licenses = [regexp.sub(r"\1", lic) 445 for lic in self.metadata['info']['classifiers'] 446 if regexp.match(lic)]
|
| /OK3568_Linux_fs/kernel/arch/s390/kernel/ |
| H A D | sysinfo.c | 94 if (info->lic) in stsi_1_1_1() 95 seq_printf(m, "LIC Identifier: %016lx\n", info->lic); in stsi_1_1_1()
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | migration-3.4.rst | 226 - The ``-lic`` package is no longer automatically added to 230 you should instead add the new ``lic-pkgs`` feature to
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | create.py | 953 lics = [lic for lic in lics if lic not in licenses]
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | tegra20.dtsi | 10 interrupt-parent = <&lic>; 170 lic: interrupt-controller@60004000 { label
|
| H A D | tegra114.dtsi | 11 interrupt-parent = <&lic>; 140 lic: interrupt-controller@60004000 { label
|
| H A D | tegra30.dtsi | 11 interrupt-parent = <&lic>; 255 lic: interrupt-controller@60004000 { label
|
| H A D | tegra210.dtsi | 10 interrupt-parent = <&lic>; 307 lic: interrupt-controller@60004000 { label
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | tegra114.dtsi | 11 interrupt-parent = <&lic>; 154 lic: interrupt-controller@60004000 { label
|
| H A D | tegra20.dtsi | 11 interrupt-parent = <&lic>; 195 lic: interrupt-controller@60004000 { label
|
| H A D | tegra30.dtsi | 11 interrupt-parent = <&lic>; 307 lic: interrupt-controller@60004000 { label
|