/device/soc/rockchip/common/sdk_linux/scripts/ |
H A D | repack-bootimg | 13 --boot_img BOOT_IMG path to the original boot image 14 --out OUT path to out binaries (default: out) 15 --kernel KERNEL path to the new kernel 16 --ramdisk RAMDISK path to the new ramdisk 17 --second SECOND path to the new 2nd bootloader (default: resource.img) 18 --dtb DTB path to the new dtb 20 path to the new recovery DTBO
|
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/ |
H A D | oal_schedule.h | 15 * along with this program; if not, write to the Free Software 99 OAL_DFT_TRACE_FAIL, /* fail while dump the key_info to kernel */ 120 输入参数 : [1]to 目的地 127 static inline hi_u32 oal_copy_from_user(hi_void *to, hi_u32 len, const hi_void *from, hi_u32 size) in oal_copy_from_user() argument 130 if (memcpy_s(to, len, from, size) != EOK) { in oal_copy_from_user() 136 return (hi_u32)copy_from_user(to, from, (hi_u32)size); in oal_copy_from_user() 142 输入参数 : [1]to 目的地 149 static inline hi_u32 oal_copy_to_user(hi_void *to, hi_u32 len, const hi_void *from, hi_u32 size) in oal_copy_to_user() argument 152 if (memcpy_s(to, len, from, size) != EOK) { in oal_copy_to_user() 158 return (hi_u32)copy_to_user(to, fro in oal_copy_to_user() [all...] |
H A D | oal_netbuf.h | 15 * along with this program; if not, write to the Free Software
187 #define oal_netbuf_copy_queue_mapping(to, from)
240 #define oal_netbuf_splice_init(from, to) skb_queue_splice_init(from, to)
241 #define oal_netbuf_copy_queue_mapping(to, from) skb_copy_queue_mapping(to, from)
294 static inline void oal_netbuf_splice_sync(oal_netbuf_head_stru *to, oal_netbuf_head_stru *from)
in oal_netbuf_splice_sync() argument 302 NetBufQueueEnqueueHead(to, nb);
in oal_netbuf_splice_sync()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/osal/linux/ |
H A D | osal_addr.c | 15 * along with this program; if not, write to the Free Software 75 unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n) in osal_copy_from_user() argument 77 return copy_from_user(to, from, n); in osal_copy_from_user() 81 unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n) in osal_copy_to_user() argument 83 return copy_to_user(to, from, n); in osal_copy_to_user()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/kutf/ |
H A D | Makefile | 4 # This program is free software and is provided to you under the terms of the 6 # Foundation, and any use by you of this program is subject to the terms 18 # default to building for the host 22 $(error Must specify KDIR to point to the kernel to target))
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/mali_kutf_irq_test/ |
H A D | Makefile | 4 # This program is free software and is provided to you under the terms of the 6 # Foundation, and any use by you of this program is subject to the terms 18 # default to building for the host 22 $(error Must specify KDIR to point to the kernel to target))
|
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_specific.h | 4 * This program is free software and is provided to you under the terms of the GNU General Public License version 2 5 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU 44 but mutexes may lead to too low values since the cpu might "idle" 45 waiting for the mutex to become available. 48 It is therefore important to configure the system to not turn of 61 MALI_STATIC_INLINE u32 _mali_osk_copy_from_user(void *to, void *from, u32 n) in _mali_osk_copy_from_user() argument 63 return (u32)copy_from_user(to, from, (unsigned long)n); in _mali_osk_copy_from_user()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_osk_specific.h | 4 * This program is free software and is provided to you under the terms of the GNU General Public License version 2 5 * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence. 44 but mutexes may lead to too low values since the cpu might "idle" 45 waiting for the mutex to become available. 48 It is therefore important to configure the system to not turn of 62 MALI_STATIC_INLINE u32 _mali_osk_copy_from_user(void *to, void *from, u32 n) in _mali_osk_copy_from_user() argument 64 return (u32)copy_from_user(to, from, (unsigned long)n); in _mali_osk_copy_from_user()
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/osal/ |
H A D | osal_addr.c | 15 * along with this program; if not, write to the Free Software 181 unsigned long osal_copy_from_user(void *to, const void *from, unsigned long n) in osal_copy_from_user() argument 183 return copy_from_user(to, from, n); in osal_copy_from_user() 187 unsigned long osal_copy_to_user(void *to, const void *from, unsigned long n) in osal_copy_to_user() argument 189 return copy_to_user(to, from, n); in osal_copy_to_user() 263 * which was created from the phys_addr passed to osal_vunmap()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | bcm_ring.h | 5 * produced and consumed respectively. All elements in the ring need to be 13 * agreement governing use of this software, this software is licensed to you 16 * following added to such license: 19 * permission to link this software with independent modules, and to copy and 23 * derived from this software. The special exception does not apply to any 47 * to approach #2, where a test for resource availability essentially also 90 * - a ring data buffer to store the ring elements. 93 * - width of a ring element: to be used in pointer arithmetic with the ring's 94 * data buffer base and an index to fetc 219 bcm_ring_copy(bcm_ring_t *to, bcm_ring_t *from) bcm_ring_copy() argument [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | Makefile | 5 # This program is free software and is provided to you under the terms of the 7 # Foundation, and any use by you of this program is subject to the terms 25 $(error Must specify KDIR to point to the kernel to target)) 196 # MAKE_ARGS to pass the custom CONFIGs on out-of-tree build 201 # When the CONFIG is not set to y or m, it defaults to n. 210 # EXTRA_CFLAGS to define the custom CONFIGs on out-of-tree build 214 # When set to [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/ |
H A D | drv_osal_sys_linux.c | 15 * along with this program; if not, write to the Free Software 25 * then map the mmz to Smmu, but the smmu can't map to cpu address, 27 * when call crypto_mem_map, we try to query the table to get cpu address firstly, 28 * if can't get cpu address from the table, then call system api to map it. 65 hi_log_error("Failed to set DMA mask %d.\n", ret); in cipher_dma_set_mask() 176 * so here we have to allocate a mmz memory then map to smmu if necessary. 271 /* try to quer in crypto_mem_map() 400 crypto_copy_from_user(hi_void *to, unsigned long to_len, const hi_void *from, unsigned long from_len) crypto_copy_from_user() argument 415 crypto_copy_to_user(hi_void *to, unsigned long to_len, const hi_void *from, unsigned long from_len) crypto_copy_to_user() argument [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/ |
H A D | drv_osal_lib_linux.h | 15 * along with this program; if not, write to the Free Software 77 hi_s32 crypto_copy_from_user(hi_void *to, unsigned long to_len, 80 hi_s32 crypto_copy_to_user(hi_void *to, unsigned long to_len, 89 * 0 if the @condition evaluated to %false after the @timeout elapsed, 90 * 1 if the @condition evaluated to %true after the @timeout elapsed, 92 * to %true before the @timeout elapsed, or -%ERESTARTSYS if it was
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/ |
H A D | linker.lds.mk | 5 * See file CREDITS for list of people who contributed to this
19 * along with this program; if not, write to the Free Software
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/ |
H A D | linker.lds.mk | 5 * See file CREDITS for list of people who contributed to this 19 * along with this program; if not, write to the Free Software
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/drivers/core/include/ |
H A D | drv_osal_chip.h | 15 * along with this program; if not, write to the Free Software 44 #error You need to define a configuration file for chip !
|
/device/soc/rockchip/common/sdk_linux/include/linux/ |
H A D | iova.h | 69 spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ 88 iova_flush_cb flush_cb; /* Call-Back function to flush IOMMU 94 struct timer_list fq_timer; /* Timer to regularily empty the 150 void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); 211 static inline void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to) in copy_reserved_iova() argument
|
/device/soc/hisilicon/common/platform/mtd/hifmc100/spi_nor/ |
H A D | hifmc100_spi_nor.c | 9 * Unless required by applicable law or agreed to in writing, software 372 HDF_LOGE("%s: copy to user failed, num = %zu", __func__, num); in HifmcCntlrDmaWriteReadOnce() 431 static int32_t HifmcSpinorWrite(struct MtdDevice *mtdDevice, off_t to, size_t len, const uint8_t *buf) in HifmcSpinorWrite() argument 442 HDF_LOGD("%s: start write buf(%p) to=%jd len=%zu", __func__, buf, to, len); in HifmcSpinorWrite() 446 ret = HifmcCntlrDmaWriteRead(mtdDevice, to, len, (uint8_t *)buf, 1); in HifmcSpinorWrite() 451 HDF_LOGD("%s: start write buf(%p) to=%jd len=%zu, done!", __func__, buf, to, len); in HifmcSpinorWrite()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/ |
H A D | utlist.h | 34 * This file contains macros to manipulate singly and doubly-linked lists. 42 * Either way, the pointer to the head of the list must be initialized to NULL. 82 /* for VS2008 we use some workarounds to get around the lack of decltype, 83 * namely, we always reassign our tmp variable to the list head if we need 84 * to dereference its prev/next pointers, and save/restore the real head.*/ 90 #define UTLIST_NEXTASGN(elt,list,to,next) { char **_alias = (char**)&((list)->next); *_alias=(char*)(to); } 92 #define UTLIST_PREVASGN(elt,list,to,prev) { char **_alias = (char**)&((list)->prev); *_alias=(char*)(to); } [all...] |
/device/soc/rockchip/common/sdk_linux/kernel/cgroup/ |
H A D | cgroup-v1.c | 40 * pidlist destructions need to be flushed on cgroup destruction. Use a 54 * cgroup_attach_task_all - attach task 'tsk' to all cgroups of task 'from' 55 * @from: attach to all cgroups of a given task 56 * @tsk: the task to be attached 90 * cgroup_trasnsfer_tasks - move tasks from one cgroup to another 91 * @to: cgroup to which the tasks will be moved 96 * is guaranteed to be either visible in the source cgroup after the 100 int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from) in cgroup_transfer_tasks() argument 108 if (cgroup_on_dfl(to)) { in cgroup_transfer_tasks() [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/ |
H A D | linux.mak | 14 # along with this program; if not, write to the Free Software
|
/device/soc/hisilicon/common/platform/i2c/ |
H A D | i2c_hi35xx.c | 9 * Unless required by applicable law or agreed to in writing, software 452 static int HdfCopyFromUser(void *to, const void *from, unsigned long n) in HdfCopyFromUser() argument 455 ret = LOS_CopyToKernel(to, n, from, n); in HdfCopyFromUser() 463 static int HdfCopyToUser(void *to, const void *from, unsigned long n) in HdfCopyToUser() argument 466 ret = LOS_CopyFromKernel(to, n, from, n); in HdfCopyToUser() 512 HDF_LOGE("%s: copy to kernel fail:%d", __func__, status); in Hi35xxI2cXferOneMsgPolling()
|
/device/soc/hisilicon/common/platform/mtd/hifmc100/spi_nand/ |
H A D | hifmc100_spi_nand.c | 9 * Unless required by applicable law or agreed to in writing, software 758 size_t to = mtdPage->addr; in HifmcCntlrWriteOnePage() local 760 if ((to & (spi->mtd.writeSize - 1)) != 0) { in HifmcCntlrWriteOnePage() 761 HDF_LOGE("%s: addr:%zu not aligned by page size:%zu", __func__, to, spi->mtd.writeSize); in HifmcCntlrWriteOnePage() 764 page = (to >> spi->mtd.writeSizeShift); in HifmcCntlrWriteOnePage()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/ |
H A D | sockets.h | 3 * Socket API (to be used from non-TCPIP threads) 20 * 3. The name of the author may not be used to endorse or promote products 89 to prevent this code from redefining it. */ 94 to prevent this code from redefining it. */ 122 * as a result of including the <netinet/in.h> header. This macro allows applications to determine 124 * Behavior: Macro SIN6_LEN for applications to determine which version of sockaddr_in6 stack supports.\n 130 * declare SIN6_LEN . This macro allows applications to determine whether they are being built 160 * You must enable PF_PKT_SUPPORT to use the sockaddr_ll data structure. \n 184 to prevent this code from redefining it. */ 221 #define SO_BROADCAST 0x0020 /* permit to sen [all...] |
/device/soc/hisilicon/hi3751v350/sdk_linux/ |
H A D | base.mak | 14 # along with this program; if not, write to the Free Software 122 #201811280929 add -Werror to upgrade warning to error to implement 0 warning rule 154 #CFG_HI_CFLAGS+=-Werror=pointer-to-int-cast 201 ## common and other modules will use hi_debug.h, which refers to the HI_LOG_LEVEL 346 ## common and other modules will use drv_mem_ext.h, which refer to the CMN_MMGR_SUPPORT 351 ## common and other modules will use hi_debug.h, which refers to the HI_LOG_LEVEL
|