| /OK3568_Linux_fs/kernel/arch/arm64/kvm/vgic/ |
| H A D | vgic-its.c | 26 static int vgic_its_save_tables_v0(struct vgic_its *its); 27 static int vgic_its_restore_tables_v0(struct vgic_its *its); 28 static int vgic_its_commit_v0(struct vgic_its *its); 171 int (*save_tables)(struct vgic_its *its); 172 int (*restore_tables)(struct vgic_its *its); 173 int (*commit)(struct vgic_its *its); 192 inline const struct vgic_its_abi *vgic_its_get_abi(struct vgic_its *its) in vgic_its_get_abi() argument 194 return &its_table_abi_versions[its->abi_rev]; in vgic_its_get_abi() 197 static int vgic_its_set_abi(struct vgic_its *its, u32 rev) in vgic_its_set_abi() argument 201 its->abi_rev = rev; in vgic_its_set_abi() [all …]
|
| H A D | vgic-v4.c | 385 struct vgic_its *its; in kvm_vgic_v4_set_forwarding() local 397 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_set_forwarding() 398 if (IS_ERR(its)) in kvm_vgic_v4_set_forwarding() 401 mutex_lock(&its->its_lock); in kvm_vgic_v4_set_forwarding() 404 ret = vgic_its_resolve_lpi(kvm, its, irq_entry->msi.devid, in kvm_vgic_v4_set_forwarding() 434 mutex_unlock(&its->its_lock); in kvm_vgic_v4_set_forwarding() 441 struct vgic_its *its; in kvm_vgic_v4_unset_forwarding() local 452 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_unset_forwarding() 453 if (IS_ERR(its)) in kvm_vgic_v4_unset_forwarding() 456 mutex_lock(&its->its_lock); in kvm_vgic_v4_unset_forwarding() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/irqchip/ |
| H A D | irq-gic-v3-its.c | 120 #define is_v4(its) (!!((its)->typer & GITS_TYPER_VLPIS)) argument 121 #define is_v4_1(its) (!!((its)->typer & GITS_TYPER_VMAPP)) argument 122 #define device_ids(its) (FIELD_GET(GITS_TYPER_DEVBITS, (its)->typer) + 1) argument 161 struct its_node *its; member 204 static bool require_its_list_vmovp(struct its_vm *vm, struct its_node *its) in require_its_list_vmovp() argument 206 return (gic_rdists->has_rvpeid || vm->vlpi_count[its->list_nr]); in require_its_list_vmovp() 211 struct its_node *its; in get_its_list() local 214 list_for_each_entry(its, &its_nodes, entry) { in get_its_list() 215 if (!is_v4(its)) in get_its_list() 218 if (require_its_list_vmovp(vm, its)) in get_its_list() [all …]
|
| /OK3568_Linux_fs/kernel/arch/um/os-Linux/ |
| H A D | time.c | 54 struct itimerspec its; in os_timer_set_interval() local 56 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval() 57 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval() 59 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval() 60 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval() 62 if (timer_settime(event_high_res_timer, 0, &its, NULL) == -1) in os_timer_set_interval() 70 struct itimerspec its = { in os_timer_one_shot() local 78 timer_settime(event_high_res_timer, 0, &its, NULL); in os_timer_one_shot() 87 struct itimerspec its; in os_timer_disable() local 89 memset(&its, 0, sizeof(struct itimerspec)); in os_timer_disable() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/boot/ |
| H A D | Makefile | 115 targets += vmlinux.its.S 120 $(obj)/vmlinux.its.S: $(addprefix $(srctree)/arch/mips/$(PLATFORM)/,$(ITS_INPUTS)) FORCE 123 targets += vmlinux.its 124 targets += vmlinux.gz.its 125 targets += vmlinux.bz2.its 126 targets += vmlinux.lzma.its 127 targets += vmlinux.lzo.its 139 $(obj)/vmlinux.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE 142 $(obj)/vmlinux.gz.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE 145 $(obj)/vmlinux.bz2.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/generic/ |
| H A D | Platform | 19 its-y := vmlinux.its.S 20 its-$(CONFIG_FIT_IMAGE_FDT_BOSTON) += board-boston.its.S 21 its-$(CONFIG_FIT_IMAGE_FDT_NI169445) += board-ni169445.its.S 22 its-$(CONFIG_FIT_IMAGE_FDT_OCELOT) += board-ocelot.its.S 23 its-$(CONFIG_FIT_IMAGE_FDT_XILFPGA) += board-xilfpga.its.S
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | build-tftp-firmware.sh | 102 rm -f *${SUFFIX} *.itb *.its *.dtb *.dts data2sign* *.hdr *.hash orderlist.txt 176 cat > update.its << EOF 197 };" >> update.its 210 };" >> update.its 220 cat >> update.its << EOF 248 cp update.its key.its 249 sed -i "/data =/d" key.its 250 dtc -I dts -O dtb key.its -o key.dtb 252 ./mkimage -f update.its -k keys/ -K key.dtb -E -p ${HDR_SIZE} -r update.itb -v ${ARG_VERSION} 256 ./mkimage -f update.its -E -p ${HDR_SIZE} update.itb -v ${ARG_VERSION} [all …]
|
| /OK3568_Linux_fs/buildroot/board/freescale/common/imx/ |
| H A D | imx8-bootloader-prepare.sh | 13 …F_LOAD_ADDR=0x00910000 ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its 14 ${HOST_DIR}/bin/mkimage -E -p 0x3000 -f ${BINARIES_DIR}/u-boot.its ${BINARIES_DIR}/u-boot.itb 15 rm -f ${BINARIES_DIR}/u-boot.its 20 …F_LOAD_ADDR=0x00920000 ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its 21 ${HOST_DIR}/bin/mkimage -E -p 0x3000 -f ${BINARIES_DIR}/u-boot.its ${BINARIES_DIR}/u-boot.itb 22 rm -f ${BINARIES_DIR}/u-boot.its 27 …F_LOAD_ADDR=0x00960000 ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its 28 ${HOST_DIR}/bin/mkimage -E -p 0x3000 -f ${BINARIES_DIR}/u-boot.its ${BINARIES_DIR}/u-boot.itb 29 rm -f ${BINARIES_DIR}/u-boot.its 34 …F_LOAD_ADDR=0x00970000 ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | kernel-fitimage.bbclass | 84 # $1 ... .its filename 98 # $1 ... .its filename 134 # $1 ... .its filename 181 # $1 ... .its filename 228 # $1 ... .its filename 265 # $1 ... .its filename 292 # $1 ... .its filename 341 # $1 ... .its filename 378 # otherwise its selected based on kernel ID 416 # otherwise its selected based on kernel ID [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/algorithm/ |
| H A D | generate_clip_ids_impl.hpp | 43 for (auto its = pool.equal_range(renderable.id); its.first != its.second; ++its.first) { in update() local 44 auto& existing = its.first->second; in update()
|
| /OK3568_Linux_fs/device/rockchip/common/configs/ |
| H A D | Config.in.boot | 22 string "its script for FIT boot image" 24 default "boot.its" if RK_CHIP_FAMILY = "rv1126_rv1109" 25 default "zboot.its" if RK_BOOT_COMPRESSED 26 default "boot.its"
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/shared-mime-info/files/ |
| H A D | 0001-migrate-from-custom-itstool-to-builtin-msgfmt-for-cr.patch | 39 - --its "${src_root}/data/its/shared-mime-info.its" \ 54 - 'its/shared-mime-info.its', 55 - 'its/shared-mime-info.loc',
|
| /OK3568_Linux_fs/buildroot/board/chromebook/snow/ |
| H A D | sign.sh | 23 run cp $BOARD_DIR/kernel.its $BINARIES_DIR/kernel.its || exit 1 25 (cd $BINARIES_DIR && run $mkimage -f kernel.its uImage.itb) || exit 1 41 rm -f $BINARIES_DIR/kernel.its $BINARIES_DIR/dummy.txt
|
| /OK3568_Linux_fs/buildroot/board/chromebook/elm/ |
| H A D | sign.sh | 23 run cp $BOARD_DIR/kernel.its $BINARIES_DIR/kernel.its || exit 1 25 (cd $BINARIES_DIR && run $mkimage -f kernel.its uImage.itb) || exit 1 41 rm -f $BINARIES_DIR/kernel.its $BINARIES_DIR/dummy.txt
|
| /OK3568_Linux_fs/external/rkwifibt/debian/ |
| H A D | copyright | 19 modify the Software; (c) to distribute the Software and/or its moderivations 20 and/ or its derivative works in binary code format only, that are executed 24 (a) distribute the Software and/or its moderivations and/or its derivatives 27 notices contained in the Software and/or its derivatives works.
|
| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | MS-PL | 9 …n that distributes its contribution under this license. "Licensed patents" are a contributor`s pat… 11 …ree copyright license to reproduce its contribution, prepare derivative works of its contribution,… 12 …lty-free license under its licensed patents to make, have made, use, sell, offer for sale, import,…
|
| H A D | CECILL-1.1 | 5 … the result of discussions between its authors in order to ensure compliance with the two main pri… 6 …- firstly, its conformity with French law, both as regards the law of torts and intellectual prope… 11 …- CEA, a public scientific, technical and industrial establishment, having its principal place of … 13 …ifique - CNRS, a public scientific and technological establishment, having its principal place of … 15 …tique - INRIA, a public scientific and technological establishment, having its principal place of … 25 … modifying and/or developing or reproducing the software by the user given its nature of Free Soft… 27 … which the holder of the economic rights decides to submit the operation thereof to its provisions. 33 Agreement: means this Licensing Agreement, and any or all of its subsequent versions. 35 Software: means the software in its Object Code and/or Source Code form and, where applicable, its … 37 Initial Software: means the Software in its Source Code and/or Object Code form and, where applicab… [all …]
|
| H A D | MS-RL | 11 A "contributor" is any person that distributes its contribution under this license. 12 "Licensed patents" are a contributor`s patent claims that read directly on its contribution. 14 …ree copyright license to reproduce its contribution, prepare derivative works of its contribution,… 15 …lty-free license under its licensed patents to make, have made, use, sell, offer for sale, import,…
|
| H A D | CECILL-2.1 | 10 of discussions between its authors in order to ensure compliance with 11 the two main principles guiding its drafting: 25 having its principal place of business at 25 rue Leblanc, immeuble Le 29 and technological establishment, having its principal place of business 33 Inria, a public scientific and technological establishment, having its 54 the user's attention, given its Free Software status, which may make it 55 complicated to use, with the result that its use is reserved for 66 the economic rights decides to submit the use thereof to its provisions. 78 Agreement: means this license agreement, and its possible subsequent 81 Software: means the software in its Object Code and/or Source Code form [all …]
|
| H A D | BSD-4-Clause-Shortened | 5 (1) source code distributions retain the above copyright notice and this paragraph in its entirety, 6 …uding binary code include the above copyright notice and this paragraph in its entirety in the doc… 9 …are developed by the University of California, Lawrence Berkeley Laboratory and its contributors.'' 11 Neither the name of the University nor the names of its contributors may be used to endorse or prom…
|
| /OK3568_Linux_fs/external/chromium/licenses/ |
| H A D | Ms-PL.txt | 10 A "contributor" is any person that distributes its contribution under this license. 11 "Licensed patents" are a contributor's patent claims that read directly on its contribution. 14 …ree copyright license to reproduce its contribution, prepare derivative works of its contribution,… 15 …lty-free license under its licensed patents to make, have made, use, sell, offer for sale, import,…
|
| /OK3568_Linux_fs/u-boot/doc/uImage.FIT/ |
| H A D | howto.txt | 22 for its latest version. mkimage (together with dtc) takes as input 24 its various properties used during booting. By convention, image source file 25 has the ".its" extension, also, the details of its format are given in 37 - image source file (*.its) 60 If a platform specific image source file (.its) is shipped with the U-Boot 77 doc/uImage.FIT/kernel.its (note that kernel.its assumes that vmlinux.bin.gz is 79 specified in the kernel.its file). Here's how to create the image and inspect 80 its contents: 83 $ mkimage -f kernel.its kernel.itb 84 DTC: dts->dtb on file "kernel.its" [all …]
|
| /OK3568_Linux_fs/buildroot/package/polkit/ |
| H A D | polkit.mk | 42 $(INSTALL) -D -m 644 $(@D)/data/polkit.its \ 43 $(HOST_DIR)/share/gettext/its/polkit.its 45 $(HOST_DIR)/share/gettext/its/polkit.loc
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/tcltk/tk/ |
| H A D | tkprivate.diff | 9 # String to pass to linker to pick up the Tk library from its 14 # String to pass to linker to pick up the Tk library from its 27 # String to pass to linker to pick up the Tk stub library from its 32 # String to pass to linker to pick up the Tk stub library from its
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qgeomapitemgeometry.cpp | 80 quint16 *its = geom->indexDataAsUShort(); in allocateAndFill() local 82 its[i] = ix[i]; in allocateAndFill() 84 quint32 *its = geom->indexDataAsUInt(); in allocateAndFill() local 86 its[i] = ix[i]; in allocateAndFill()
|