Home
last modified time | relevance | path

Searched refs:cell (Results 1 – 25 of 68) sorted by relevance

123

/Zephyr-latest/soc/atmel/sam0/common/
Datmel_sam0_dt.h17 #define ATMEL_SAM0_DT_INST_CELL_REG_ADDR_OFFSET(n, cell) \ argument
19 (DT_REG_ADDR(DT_INST_PHANDLE_BY_NAME(n, clocks, cell)) + \
20 DT_INST_CLOCKS_CELL_BY_NAME(n, cell, offset))
22 #define ATMEL_SAM0_DT_INST_CELL_PERIPH_MASK(n, name, cell) \ argument
23 BIT(DT_INST_CLOCKS_CELL_BY_NAME(n, name, cell))
35 #define ATMEL_SAM0_DT_INST_MCLK_PM_PERIPH_MASK(n, cell) \ argument
37 (ATMEL_SAM0_DT_INST_CELL_PERIPH_MASK(n, mclk, cell)), \
38 (ATMEL_SAM0_DT_INST_CELL_PERIPH_MASK(n, pm, cell)))
43 #define ATMEL_SAM0_DT_INST_DMA_CELL(n, name, cell) \ argument
45 (DT_INST_DMAS_CELL_BY_NAME(n, name, cell)), \
[all …]
/Zephyr-latest/include/zephyr/devicetree/
Dreset.h121 #define DT_RESET_CELL_BY_IDX(node_id, idx, cell) \ argument
122 DT_PHA_BY_IDX(node_id, resets, idx, cell)
155 #define DT_RESET_CELL_BY_NAME(node_id, name, cell) \ argument
156 DT_PHA_BY_NAME(node_id, resets, name, cell)
165 #define DT_RESET_CELL(node_id, cell) \ argument
166 DT_RESET_CELL_BY_IDX(node_id, 0, cell)
214 #define DT_INST_RESET_CELL_BY_IDX(inst, idx, cell) \ argument
215 DT_RESET_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
226 #define DT_INST_RESET_CELL_BY_NAME(inst, name, cell) \ argument
227 DT_RESET_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
[all …]
Dclocks.h207 #define DT_CLOCKS_CELL_BY_IDX(node_id, idx, cell) \ argument
208 DT_PHA_BY_IDX(node_id, clocks, idx, cell)
243 #define DT_CLOCKS_CELL_BY_NAME(node_id, name, cell) \ argument
244 DT_PHA_BY_NAME(node_id, clocks, name, cell)
253 #define DT_CLOCKS_CELL(node_id, cell) DT_CLOCKS_CELL_BY_IDX(node_id, 0, cell) argument
326 #define DT_INST_CLOCKS_CELL_BY_IDX(inst, idx, cell) \ argument
327 DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
338 #define DT_INST_CLOCKS_CELL_BY_NAME(inst, name, cell) \ argument
339 DT_CLOCKS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
347 #define DT_INST_CLOCKS_CELL(inst, cell) \ argument
[all …]
Ddma.h165 #define DT_DMAS_CELL_BY_IDX(node_id, idx, cell) \ argument
166 DT_PHA_BY_IDX(node_id, dmas, idx, cell)
176 #define DT_INST_DMAS_CELL_BY_IDX(inst, idx, cell) \ argument
177 DT_PHA_BY_IDX(DT_DRV_INST(inst), dmas, idx, cell)
220 #define DT_DMAS_CELL_BY_NAME(node_id, name, cell) \ argument
221 DT_PHA_BY_NAME(node_id, dmas, name, cell)
239 #define DT_DMAS_CELL_BY_NAME_OR(node_id, name, cell, default_value) \ argument
240 DT_PHA_BY_NAME_OR(node_id, dmas, name, cell, default_value)
251 #define DT_INST_DMAS_CELL_BY_NAME(inst, name, cell) \ argument
252 DT_DMAS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
Dpwms.h135 #define DT_PWMS_CELL_BY_IDX(node_id, idx, cell) \ argument
136 DT_PHA_BY_IDX(node_id, pwms, idx, cell)
182 #define DT_PWMS_CELL_BY_NAME(node_id, name, cell) \ argument
183 DT_PHA_BY_NAME(node_id, pwms, name, cell)
192 #define DT_PWMS_CELL(node_id, cell) DT_PWMS_CELL_BY_IDX(node_id, 0, cell) argument
363 #define DT_INST_PWMS_CELL_BY_IDX(inst, idx, cell) \ argument
364 DT_PWMS_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
375 #define DT_INST_PWMS_CELL_BY_NAME(inst, name, cell) \ argument
376 DT_PWMS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
384 #define DT_INST_PWMS_CELL(inst, cell) \ argument
[all …]
/Zephyr-latest/include/zephyr/
Ddevicetree.h1564 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument
1565 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell)
1590 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument
1591 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value)
1600 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument
1616 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument
1617 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value)
1659 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument
1660 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell)
1683 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument
[all …]
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome-zephyr.js10 let cell = titleTable.insertRow(1).insertCell(0);
11 cell.innerHTML = '<div id="projectversion">' + version + '</div>';
/Zephyr-latest/samples/drivers/ethernet/eth_ivshmem/
DREADME.rst5 Communicate with another "cell" in the Jailhouse hypervisor using IVSHMEM Ethernet.
11 another "cell" in the Jailhouse hypervisor. Currently only the qemu_cortex_a53
59 Copy the generated zephyr.bin to the Jailhouse Linux root cell:
65 Jailhouse has a prebuilt Zephyr cell configuration that works for
68 Back in Jailhouse Linux shell, create the Zephyr cell:
72 jailhouse enable /etc/jailhouse/qemu-arm64.cell
74 jailhouse cell create /etc/jailhouse/qemu-arm64-zephyr-demo.cell
83 Load and start the Zephyr cell:
87 jailhouse cell load qemu-arm64-zephyr-demo zephyr.bin --address 0x70000000
88 jailhouse cell start qemu-arm64-zephyr-demo
/Zephyr-latest/include/zephyr/drivers/dma/
Ddma_esp32.h32 #define ESP32_DT_INST_DMA_CELL(n, name, cell) \ argument
34 (DT_INST_DMAS_CELL_BY_NAME(n, name, cell)), \
/Zephyr-latest/include/zephyr/drivers/misc/ft8xx/
Dft8xx_dl.h216 #define FT8XX_VERTEX2II(x, y, handle, cell) (0x80000000 | \ argument
220 ((uint32_t)(cell) & 0x7f))
/Zephyr-latest/samples/boards/bbc/microbit/pong/boards/
Dbbc_microbit_v2.overlay3 /* period cell corresponds to initial period */
/Zephyr-latest/samples/boards/bbc/microbit/sound/boards/
Dbbc_microbit_v2.overlay3 /* period cell corresponds to initial period */
Dbbc_microbit.overlay3 /* period cell corresponds to initial period */
/Zephyr-latest/boards/nxp/imx8mn_evk/doc/
Dindex.rst132 Use Jailhouse hypervisor, after root cell linux is up:
136 #jailhouse enable imx8mn.cell
137 #jailhouse cell create imx8mn-zephyr.cell
138 #jailhouse cell load 1 zephyr.bin -a 0x93c00000
139 #jailhouse cell start 1
/Zephyr-latest/drivers/display/
DKconfig.sdl63 int "Transparency grid cell size"
69 hex "Transparency grid cell color 1"
75 hex "Transparency grid cell color 2"
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest.dts18 compatible = "interrupt-three-cell";
30 compatible = "interrupt-one-cell";
35 compatible = "interrupt-two-cell";
40 compatible = "interrupt-three-cell";
56 compatible = "interrupt-one-cell";
62 compatible = "interrupt-two-cell";
68 compatible = "interrupt-three-cell";
101 compatible = "interrupt-two-cell";
/Zephyr-latest/doc/safety/images/
DIEC-61508-basis.svg1cell-id="X5NqExCQtvZxIxQ7pmgY-0"><g data-cell-id="1"><g data-cell-id="ubt_klcrSJmbAtkwjw60-35"><g>…
/Zephyr-latest/drivers/dma/
DKconfig.stm3243 peripheral request must be specified in the dma slot of the dma cell
45 a parameter of the dma-cell.
/Zephyr-latest/scripts/kconfig/
Dkconfigfunctions.py264 def _node_ph_array_prop(node, prop, index, cell, unit=None): argument
288 if cell not in node.props[prop].val[int(index)].data.keys():
290 return node.props[prop].val[int(index)].data[cell] >> _dt_units_to_scale(unit)
647 def dt_node_ph_array_prop(kconf, name, path, prop, index, cell, unit=None): argument
671 return str(_node_ph_array_prop(node, prop, index, cell, unit))
673 return hex(_node_ph_array_prop(node, prop, index, cell, unit))
/Zephyr-latest/boards/nxp/imx8mm_evk/doc/
Dindex.rst167 Use Jailhouse hypervisor, after root cell linux is up:
171 #jailhouse enable imx8mm.cell
172 #jailhouse cell create imx8mm-zephyr.cell
173 #jailhouse cell load 1 zephyr.bin -a 0x93c00000
174 #jailhouse cell start 1
/Zephyr-latest/doc/_extensions/zephyr/
Dapi_overview.py139 for cell in [version_node, since_url]:
141 entry += cell
/Zephyr-latest/boards/nxp/ls1046ardb/doc/
Dindex.rst190 jailhouse enable ls1046a-rdb.cell
191 jailhouse cell create ls1046a-rdb-inmate-demo.cell
192 jailhouse cell load 1 zephyr.bin --address 0xc0000000
193 jailhouse cell start 1
/Zephyr-latest/boards/nxp/imx8mp_evk/doc/
Dindex.rst154 Use Jailhouse hypervisor, after root cell linux is up:
158 #jailhouse enable imx8mp.cell
159 #jailhouse cell create imx8mp-zephyr.cell
160 #jailhouse cell load 1 zephyr.bin -a 0xc0000000
161 #jailhouse cell start 1
/Zephyr-latest/boards/contextualelectronics/abc/
Dcontextualelectronics_abc.dts14 compatible = "nordic,nrf52840-ble-cell";
/Zephyr-latest/boards/nxp/imx93_evk/doc/
Dindex.rst338 cell can utilize.
340 * **Root cell**: refers to the cell in which Linux is running. This is the main cell which
343 assigned to the root cell.
346 use are taken from the root cell (the cell Linux is running in).
355 Root cell wants to use the **UART** which let's say has its registers mapped in

123