HomeSort by relevance Sort by last modified time
    Searched refs:ivc (Results 1 - 6 of 6) sorted by null

  /external/u-boot/arch/arm/mach-tegra/
ivc.c 8 #include <asm/arch-tegra/ivc.h>
13 * IVC channel reset protocol.
71 static inline void tegra_ivc_invalidate_counter(struct tegra_ivc *ivc,
79 static inline void tegra_ivc_flush_counter(struct tegra_ivc *ivc,
87 static inline ulong tegra_ivc_frame_addr(struct tegra_ivc *ivc,
91 BUG_ON(frame >= ivc->nframes);
94 (ivc->frame_size * frame);
97 static inline void *tegra_ivc_frame_pointer(struct tegra_ivc *ivc,
101 return (void *)tegra_ivc_frame_addr(ivc, ch, frame);
104 static inline void tegra_ivc_invalidate_frame(struct tegra_ivc *ivc,
    [all...]
Makefile 29 obj-$(CONFIG_TEGRA_IVC) += ivc.o
  /external/u-boot/arch/arm/include/asm/arch-tegra/
ivc.h 12 * Tegra IVC is a communication protocol that transfers fixed-size frames
35 * This is described in detail in ivc.c.
40 * struct tegra_ivc - Software state of an IVC channel.
42 * This state is internal to the IVC code and should not be accessed directly
90 * @ivc The IVC channel.
95 int tegra_ivc_read_get_next_frame(struct tegra_ivc *ivc, void **frame);
105 * @ivc The IVC channel.
109 int tegra_ivc_read_advance(struct tegra_ivc *ivc);
    [all...]
  /external/ltp/testcases/kernel/syscalls/vmsplice/
vmsplice02.c 51 static struct iovec ivc; variable in typeref:struct:iovec
59 { &notvalidfd, &ivc, 1, EBADF },
60 { &filefd, &ivc, 1, EBADF },
61 { &pipes[1], &ivc, IOV_MAX + 1, EINVAL },
75 ivc.iov_base = buffer;
76 ivc.iov_len = TEST_BLOCK_SIZE;
  /external/u-boot/drivers/misc/
tegra186_bpmp.c 13 #include <asm/arch-tegra/ivc.h>
25 struct tegra_ivc ivc; member in struct:tegra186_bpmp
44 ret = tegra_ivc_write_get_next_frame(&priv->ivc, &ivc_frame);
55 ret = tegra_ivc_write_advance(&priv->ivc);
63 ret = tegra_ivc_channel_notified(&priv->ivc);
69 ret = tegra_ivc_read_get_next_frame(&priv->ivc, &ivc_frame);
86 ret = tegra_ivc_read_advance(&priv->ivc);
160 static void tegra186_bpmp_ivc_notify(struct tegra_ivc *ivc)
163 container_of(ivc, struct tegra186_bpmp, ivc);
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-var.cpp 69 volatile const int ivc) {
75 volatile int &ir = ivc; // expected-error{{binding value of type 'const volatile int' to reference to type 'volatile int' drops 'const' qualifier}}

Completed in 100 milliseconds