| /OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/ |
| H A D | cxd2099.c | 62 static int read_block(struct cxd *ci, u8 adr, u8 *data, u16 n) in read_block() argument 66 if (ci->lastaddress != adr) in read_block() 67 status = regmap_write(ci->regmap, 0, adr); in read_block() 69 ci->lastaddress = adr; in read_block() 74 if (ci->cfg.max_i2c && len > ci->cfg.max_i2c) in read_block() 75 len = ci->cfg.max_i2c; in read_block() 76 status = regmap_raw_read(ci->regmap, 1, data, len); in read_block() 86 static int read_reg(struct cxd *ci, u8 reg, u8 *val) in read_reg() argument 88 return read_block(ci, reg, val, 1); in read_reg() 91 static int read_pccard(struct cxd *ci, u16 address, u8 *data, u8 n) in read_pccard() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/chipidea/ |
| H A D | core.c | 40 #include "ci.h" 98 static void hw_alloc_regmap(struct ci_hdrc *ci, bool is_lpm) in hw_alloc_regmap() argument 103 ci->hw_bank.regmap[i] = in hw_alloc_regmap() 104 (i <= CAP_LAST ? ci->hw_bank.cap : ci->hw_bank.op) + in hw_alloc_regmap() 108 ci->hw_bank.regmap[i] = ci->hw_bank.op + in hw_alloc_regmap() 116 static enum ci_revision ci_get_revision(struct ci_hdrc *ci) in ci_get_revision() argument 118 int ver = hw_read_id_reg(ci, ID_ID, VERSION) >> __ffs(VERSION); in ci_get_revision() 122 rev = hw_read_id_reg(ci, ID_ID, REVISION) in ci_get_revision() 135 * @ci: the controller 139 u32 hw_read_intr_enable(struct ci_hdrc *ci) in hw_read_intr_enable() argument [all …]
|
| H A D | otg_fsm.c | 25 #include "ci.h" 36 struct ci_hdrc *ci = dev_get_drvdata(dev); in a_bus_req_show() local 40 t = scnprintf(next, size, "%d\n", ci->fsm.a_bus_req); in a_bus_req_show() 51 struct ci_hdrc *ci = dev_get_drvdata(dev); in a_bus_req_store() local 56 mutex_lock(&ci->fsm.lock); in a_bus_req_store() 58 ci->fsm.a_bus_req = 0; in a_bus_req_store() 61 if (ci->fsm.a_bus_drop) { in a_bus_req_store() 62 mutex_unlock(&ci->fsm.lock); in a_bus_req_store() 65 ci->fsm.a_bus_req = 1; in a_bus_req_store() 66 if (ci->fsm.otg->state == OTG_STATE_A_PERIPHERAL) { in a_bus_req_store() [all …]
|
| H A D | udc.c | 24 #include "ci.h" 63 static inline int ep_to_bit(struct ci_hdrc *ci, int n) in ep_to_bit() argument 65 int fill = 16 - ci->hw_ep_max / 2; in ep_to_bit() 67 if (n >= ci->hw_ep_max / 2) in ep_to_bit() 75 * @ci: the controller 80 static int hw_device_state(struct ci_hdrc *ci, u32 dma) in hw_device_state() argument 83 hw_write(ci, OP_ENDPTLISTADDR, ~0, dma); in hw_device_state() 85 hw_write(ci, OP_USBINTR, ~0, in hw_device_state() 88 hw_write(ci, OP_USBINTR, ~0, 0); in hw_device_state() 95 * @ci: the controller [all …]
|
| H A D | otg.c | 19 #include "ci.h" 26 * @ci: the controller 29 u32 hw_read_otgsc(struct ci_hdrc *ci, u32 mask) in hw_read_otgsc() argument 32 u32 val = hw_read(ci, OP_OTGSC, mask); in hw_read_otgsc() 38 cable = &ci->platdata->vbus_extcon; in hw_read_otgsc() 39 if (!IS_ERR(cable->edev) || ci->role_switch) { in hw_read_otgsc() 56 cable = &ci->platdata->id_extcon; in hw_read_otgsc() 57 if (!IS_ERR(cable->edev) || ci->role_switch) { in hw_read_otgsc() 79 * @ci: the controller 83 void hw_write_otgsc(struct ci_hdrc *ci, u32 mask, u32 data) in hw_write_otgsc() argument [all …]
|
| H A D | host.c | 20 #include "ci.h" 37 struct ci_hdrc *ci = dev_get_drvdata(dev); in ehci_ci_portpower() local 60 if (enable && (ci->platdata->phy_mode == USBPHY_INTERFACE_MODE_HSIC)) { in ehci_ci_portpower() 65 hw_port_test_set(ci, 5); in ehci_ci_portpower() 66 hw_port_test_set(ci, 0); in ehci_ci_portpower() 74 struct ci_hdrc *ci = dev_get_drvdata(dev); in ehci_ci_reset() local 84 if (ci->platdata->notify_event) { in ehci_ci_reset() 85 ret = ci->platdata->notify_event(ci, in ehci_ci_reset() 91 ci_platform_configure(ci); in ehci_ci_reset() 102 static irqreturn_t host_irq(struct ci_hdrc *ci) in host_irq() argument [all …]
|
| H A D | debug.c | 16 #include "ci.h" 26 struct ci_hdrc *ci = s->private; in ci_device_show() local 27 struct usb_gadget *gadget = &ci->gadget; in ci_device_show() 39 if (!ci->driver) in ci_device_show() 43 (ci->driver->function ? ci->driver->function : "")); in ci_device_show() 44 seq_printf(s, "gadget max speed = %d\n", ci->driver->max_speed); in ci_device_show() 55 struct ci_hdrc *ci = s->private; in ci_port_test_show() local 59 pm_runtime_get_sync(ci->dev); in ci_port_test_show() 60 spin_lock_irqsave(&ci->lock, flags); in ci_port_test_show() 61 mode = hw_port_test_get(ci); in ci_port_test_show() [all …]
|
| H A D | ci_hdrc_msm.c | 17 #include "ci.h" 30 /* Vendor base starts at 0x200 beyond CI base */ 37 struct platform_device *ci; member 79 static int ci_hdrc_msm_notify_event(struct ci_hdrc *ci, unsigned event) in ci_hdrc_msm_notify_event() argument 81 struct device *dev = ci->dev->parent; in ci_hdrc_msm_notify_event() 89 hw_phymode_configure(ci); in ci_hdrc_msm_notify_event() 96 ret = phy_init(ci->phy); in ci_hdrc_msm_notify_event() 100 ret = phy_power_on(ci->phy); in ci_hdrc_msm_notify_event() 102 phy_exit(ci->phy); in ci_hdrc_msm_notify_event() 107 hw_write_id_reg(ci, HS_PHY_AHB_MODE, 0xffffffff, 0x8); in ci_hdrc_msm_notify_event() [all …]
|
| H A D | ulpi.c | 10 #include "ci.h" 19 static int ci_ulpi_wait(struct ci_hdrc *ci, u32 mask) in ci_ulpi_wait() argument 24 if (!hw_read(ci, OP_ULPI_VIEWPORT, mask)) in ci_ulpi_wait() 35 struct ci_hdrc *ci = dev_get_drvdata(dev); in ci_ulpi_read() local 38 hw_write(ci, OP_ULPI_VIEWPORT, 0xffffffff, ULPI_WRITE | ULPI_WAKEUP); in ci_ulpi_read() 39 ret = ci_ulpi_wait(ci, ULPI_WAKEUP); in ci_ulpi_read() 43 hw_write(ci, OP_ULPI_VIEWPORT, 0xffffffff, ULPI_RUN | ULPI_ADDR(addr)); in ci_ulpi_read() 44 ret = ci_ulpi_wait(ci, ULPI_RUN); in ci_ulpi_read() 48 return hw_read(ci, OP_ULPI_VIEWPORT, GENMASK(15, 8)) >> 8; in ci_ulpi_read() 53 struct ci_hdrc *ci = dev_get_drvdata(dev); in ci_ulpi_write() local [all …]
|
| H A D | ci.h | 3 * ci.h - common structures, functions, and macros of the ChipIdea driver 83 * @ci: pointer to the controller 101 struct ci_hdrc *ci; member 262 static inline struct ci_role_driver *ci_role(struct ci_hdrc *ci) in ci_role() argument 264 BUG_ON(ci->role >= CI_ROLE_END || !ci->roles[ci->role]); in ci_role() 265 return ci->roles[ci->role]; in ci_role() 268 static inline int ci_role_start(struct ci_hdrc *ci, enum ci_role role) in ci_role_start() argument 275 if (!ci->roles[role]) in ci_role_start() 278 ret = ci->roles[role]->start(ci); in ci_role_start() 280 ci->role = role; in ci_role_start() [all …]
|
| /OK3568_Linux_fs/kernel/fs/ocfs2/ |
| H A D | uptodate.c | 58 u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci) in ocfs2_metadata_cache_owner() argument 60 BUG_ON(!ci || !ci->ci_ops); in ocfs2_metadata_cache_owner() 62 return ci->ci_ops->co_owner(ci); in ocfs2_metadata_cache_owner() 65 struct super_block *ocfs2_metadata_cache_get_super(struct ocfs2_caching_info *ci) in ocfs2_metadata_cache_get_super() argument 67 BUG_ON(!ci || !ci->ci_ops); in ocfs2_metadata_cache_get_super() 69 return ci->ci_ops->co_get_super(ci); in ocfs2_metadata_cache_get_super() 72 static void ocfs2_metadata_cache_lock(struct ocfs2_caching_info *ci) in ocfs2_metadata_cache_lock() argument 74 BUG_ON(!ci || !ci->ci_ops); in ocfs2_metadata_cache_lock() 76 ci->ci_ops->co_cache_lock(ci); in ocfs2_metadata_cache_lock() 79 static void ocfs2_metadata_cache_unlock(struct ocfs2_caching_info *ci) in ocfs2_metadata_cache_unlock() argument [all …]
|
| H A D | uptodate.h | 25 u64 (*co_owner)(struct ocfs2_caching_info *ci); 28 struct super_block *(*co_get_super)(struct ocfs2_caching_info *ci); 33 void (*co_cache_lock)(struct ocfs2_caching_info *ci); 34 void (*co_cache_unlock)(struct ocfs2_caching_info *ci); 40 void (*co_io_lock)(struct ocfs2_caching_info *ci); 41 void (*co_io_unlock)(struct ocfs2_caching_info *ci); 47 void ocfs2_metadata_cache_init(struct ocfs2_caching_info *ci, 49 void ocfs2_metadata_cache_purge(struct ocfs2_caching_info *ci); 50 void ocfs2_metadata_cache_exit(struct ocfs2_caching_info *ci); 52 u64 ocfs2_metadata_cache_owner(struct ocfs2_caching_info *ci); [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ddbridge/ |
| H A D | ddbridge-ci.c | 3 * ddbridge-ci.c: Digital Devices bridge CI (DuoFlex, CI Bridge) support 21 #include "ddbridge-ci.h" 27 /* Octopus CI internal CI interface */ 29 static int wait_ci_ready(struct ddb_ci *ci) in wait_ci_ready() argument 35 if (ddbreadl(ci->port->dev, in wait_ci_ready() 36 CI_CONTROL(ci->nr)) & CI_READY) in wait_ci_ready() 48 struct ddb_ci *ci = ca->data; in read_attribute_mem() local 53 ddbwritel(ci->port->dev, CI_READ_CMD | (1 << 16) | address, in read_attribute_mem() 54 CI_DO_READ_ATTRIBUTES(ci->nr)); in read_attribute_mem() 55 wait_ci_ready(ci); in read_attribute_mem() [all …]
|
| /OK3568_Linux_fs/kernel/arch/microblaze/kernel/cpu/ |
| H A D | cpuinfo-pvr-full.c | 23 #define CI(c, p) { ci->c = PVR_##p(pvr); } macro 28 void set_cpuinfo_pvr_full(struct cpuinfo *ci, struct device_node *cpu) in set_cpuinfo_pvr_full() argument 34 CI(ver_code, VERSION); in set_cpuinfo_pvr_full() 35 if (!ci->ver_code) { in set_cpuinfo_pvr_full() 42 if (ci->use_instr != temp) in set_cpuinfo_pvr_full() 44 ci->use_instr = temp; in set_cpuinfo_pvr_full() 47 if (ci->use_mult != temp) in set_cpuinfo_pvr_full() 49 ci->use_mult = temp; in set_cpuinfo_pvr_full() 52 if (ci->use_fpu != temp) in set_cpuinfo_pvr_full() 54 ci->use_fpu = temp; in set_cpuinfo_pvr_full() [all …]
|
| H A D | cpuinfo-static.c | 23 void __init set_cpuinfo_static(struct cpuinfo *ci, struct device_node *cpu) in set_cpuinfo_static() argument 27 ci->use_instr = in set_cpuinfo_static() 40 if (ci->use_instr != i) in set_cpuinfo_static() 43 ci->use_mult = fcpu(cpu, "xlnx,use-hw-mul"); in set_cpuinfo_static() 44 if (ci->use_mult != CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) in set_cpuinfo_static() 46 ci->use_mult = in set_cpuinfo_static() 47 (ci->use_mult > 1 ? in set_cpuinfo_static() 49 (ci->use_mult == 1 ? PVR0_USE_HW_MUL_MASK : 0)); in set_cpuinfo_static() 51 ci->use_fpu = fcpu(cpu, "xlnx,use-fpu"); in set_cpuinfo_static() 52 if (ci->use_fpu != CONFIG_XILINX_MICROBLAZE0_USE_FPU) in set_cpuinfo_static() [all …]
|
| /OK3568_Linux_fs/kernel/fs/ceph/ |
| H A D | xattr.c | 18 static int __remove_xattr(struct ceph_inode_info *ci, 36 ssize_t (*getxattr_cb)(struct ceph_inode_info *ci, char *val, 38 bool (*exists_cb)(struct ceph_inode_info *ci); 48 static bool ceph_vxattrcb_layout_exists(struct ceph_inode_info *ci) in ceph_vxattrcb_layout_exists() argument 50 struct ceph_file_layout *fl = &ci->i_layout; in ceph_vxattrcb_layout_exists() 56 static ssize_t ceph_vxattrcb_layout(struct ceph_inode_info *ci, char *val, in ceph_vxattrcb_layout() argument 59 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb); in ceph_vxattrcb_layout() 62 s64 pool = ci->i_layout.pool_id; in ceph_vxattrcb_layout() 69 pool_ns = ceph_try_get_string(ci->i_layout.pool_ns); in ceph_vxattrcb_layout() 71 dout("ceph_vxattrcb_layout %p\n", &ci->vfs_inode); in ceph_vxattrcb_layout() [all …]
|
| H A D | caps.c | 48 struct ceph_inode_info *ci, 433 static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds) in __get_cap_for_mds() argument 436 struct rb_node *n = ci->i_caps.rb_node; in __get_cap_for_mds() 450 struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds) in ceph_get_cap_for_mds() argument 454 spin_lock(&ci->i_ceph_lock); in ceph_get_cap_for_mds() 455 cap = __get_cap_for_mds(ci, mds); in ceph_get_cap_for_mds() 456 spin_unlock(&ci->i_ceph_lock); in ceph_get_cap_for_mds() 463 static void __insert_cap_node(struct ceph_inode_info *ci, in __insert_cap_node() argument 466 struct rb_node **p = &ci->i_caps.rb_node; in __insert_cap_node() 482 rb_insert_color(&new->ci_node, &ci->i_caps); in __insert_cap_node() [all …]
|
| H A D | inode.c | 44 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_set_ino_cb() local 47 ci->i_vino = *(struct ceph_vino *)data; in ceph_set_ino_cb() 48 inode->i_ino = ceph_vino_to_ino_t(ci->i_vino); in ceph_set_ino_cb() 82 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_get_snapdir() local 93 ci->i_rbytes = 0; in ceph_get_snapdir() 94 ci->i_btime = ceph_inode(parent)->i_btime; in ceph_get_snapdir() 99 ci->i_snap_caps = CEPH_CAP_PIN; /* so we can open */ in ceph_get_snapdir() 127 static struct ceph_inode_frag *__get_or_create_frag(struct ceph_inode_info *ci, in __get_or_create_frag() argument 135 p = &ci->i_fragtree.rb_node; in __get_or_create_frag() 158 rb_insert_color(&frag->node, &ci->i_fragtree); in __get_or_create_frag() [all …]
|
| H A D | cache.c | 113 struct ceph_inode_info* ci = cookie_netfs_data; in ceph_fscache_inode_check_aux() local 114 struct inode* inode = &ci->vfs_inode; in ceph_fscache_inode_check_aux() 121 aux.version = ci->i_version; in ceph_fscache_inode_check_aux() 128 dout("ceph inode 0x%p cached okay\n", ci); in ceph_fscache_inode_check_aux() 140 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_fscache_register_inode_cookie() local 153 if (!ci->fscache) { in ceph_fscache_register_inode_cookie() 155 aux.version = ci->i_version; in ceph_fscache_register_inode_cookie() 158 ci->fscache = fscache_acquire_cookie(fsc->fscache, in ceph_fscache_register_inode_cookie() 160 &ci->i_vino, sizeof(ci->i_vino), in ceph_fscache_register_inode_cookie() 162 ci, i_size_read(inode), false); in ceph_fscache_register_inode_cookie() [all …]
|
| H A D | cache.h | 23 void ceph_fscache_unregister_inode_cookie(struct ceph_inode_info* ci); 25 void ceph_fscache_revalidate_cookie(struct ceph_inode_info *ci); 35 static inline void ceph_fscache_inode_init(struct ceph_inode_info *ci) in ceph_fscache_inode_init() argument 37 ci->fscache = NULL; in ceph_fscache_inode_init() 38 ci->i_fscache_gen = 0; in ceph_fscache_inode_init() 49 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_fscache_uncache_page() local 50 return fscache_uncache_page(ci->fscache, page); in ceph_fscache_uncache_page() 56 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_release_fscache_page() local 57 return fscache_maybe_release_page(ci->fscache, page, gfp); in ceph_release_fscache_page() 63 struct ceph_inode_info *ci = ceph_inode(inode); in ceph_fscache_readpage_cancel() local [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
| H A D | chip.c | 238 static void brcmf_chip_sb_corerev(struct brcmf_chip_priv *ci, in brcmf_chip_sb_corerev() argument 243 regdata = ci->ops->read32(ci->ctx, CORE_SB(core->base, sbidhigh)); in brcmf_chip_sb_corerev() 249 struct brcmf_chip_priv *ci; in brcmf_chip_sb_iscoreup() local 253 ci = core->chip; in brcmf_chip_sb_iscoreup() 255 regdata = ci->ops->read32(ci->ctx, address); in brcmf_chip_sb_iscoreup() 263 struct brcmf_chip_priv *ci; in brcmf_chip_ai_iscoreup() local 267 ci = core->chip; in brcmf_chip_ai_iscoreup() 268 regdata = ci->ops->read32(ci->ctx, core->wrapbase + BCMA_IOCTL); in brcmf_chip_ai_iscoreup() 271 regdata = ci->ops->read32(ci->ctx, core->wrapbase + BCMA_RESET_CTL); in brcmf_chip_ai_iscoreup() 280 struct brcmf_chip_priv *ci; in brcmf_chip_sb_coredisable() local [all …]
|
| /OK3568_Linux_fs/buildroot/dl/fping/ |
| HD | fping-5.0.tar.gz | ... /contrib/fping.spec
fping-5.0/ci/
fping-5.0/ci/test-06 ... |
| /OK3568_Linux_fs/kernel/fs/crypto/ |
| H A D | keysetup.c | 129 bool is_hw_wrapped, const struct fscrypt_info *ci) in fscrypt_prepare_key() argument 133 if (fscrypt_using_inline_encryption(ci)) in fscrypt_prepare_key() 135 raw_key, raw_key_size, is_hw_wrapped, ci); in fscrypt_prepare_key() 137 if (WARN_ON(is_hw_wrapped || raw_key_size != ci->ci_mode->keysize)) in fscrypt_prepare_key() 140 tfm = fscrypt_allocate_skcipher(ci->ci_mode, raw_key, ci->ci_inode); in fscrypt_prepare_key() 162 int fscrypt_set_per_file_enc_key(struct fscrypt_info *ci, const u8 *raw_key) in fscrypt_set_per_file_enc_key() argument 164 ci->ci_owns_key = true; in fscrypt_set_per_file_enc_key() 165 return fscrypt_prepare_key(&ci->ci_enc_key, raw_key, in fscrypt_set_per_file_enc_key() 166 ci->ci_mode->keysize, in fscrypt_set_per_file_enc_key() 167 false /*is_hw_wrapped*/, ci); in fscrypt_set_per_file_enc_key() [all …]
|
| H A D | keysetup_v1.c | 180 const u8 *raw_key, const struct fscrypt_info *ci) in find_or_insert_direct_key() argument 192 memcpy(&hash_key, ci->ci_policy.v1.master_key_descriptor, in find_or_insert_direct_key() 197 if (memcmp(ci->ci_policy.v1.master_key_descriptor, in find_or_insert_direct_key() 200 if (ci->ci_mode != dk->dk_mode) in find_or_insert_direct_key() 202 if (!fscrypt_is_key_prepared(&dk->dk_key, ci)) in find_or_insert_direct_key() 204 if (crypto_memneq(raw_key, dk->dk_raw, ci->ci_mode->keysize)) in find_or_insert_direct_key() 220 fscrypt_get_direct_key(const struct fscrypt_info *ci, const u8 *raw_key) in fscrypt_get_direct_key() argument 226 dk = find_or_insert_direct_key(NULL, raw_key, ci); in fscrypt_get_direct_key() 235 dk->dk_mode = ci->ci_mode; in fscrypt_get_direct_key() 236 err = fscrypt_prepare_key(&dk->dk_key, raw_key, ci->ci_mode->keysize, in fscrypt_get_direct_key() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/kdrive/src/ |
| H A D | kinfo.c | 33 KdCardInfo *ci, **prev; in KdCardInfoAdd() local 35 ci = calloc(1, sizeof(KdCardInfo)); in KdCardInfoAdd() 36 if (!ci) in KdCardInfoAdd() 39 *prev = ci; in KdCardInfoAdd() 40 ci->cfuncs = funcs; in KdCardInfoAdd() 41 ci->closure = closure; in KdCardInfoAdd() 42 ci->screenList = 0; in KdCardInfoAdd() 43 ci->selected = 0; in KdCardInfoAdd() 44 ci->next = 0; in KdCardInfoAdd() 45 return ci; in KdCardInfoAdd() [all …]
|