/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/ddr/ |
D | ddr_io.h | 15 #define min(a, b) (((a) > (b)) ? (b) : (a)) argument 17 #define max(a, b) (((a) > (b)) ? (a) : (b)) argument 23 #define ddr_in32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 24 #define ddr_out32(a, v) mmio_write_32((uintptr_t)(a),\ argument 27 #define ddr_in32(a) mmio_read_32((uintptr_t)(a)) argument 28 #define ddr_out32(a, v) mmio_write_32((uintptr_t)(a), v) argument 33 #define ddr_setbits32(a, v) ddr_out32((a), ddr_in32(a) | (v)) argument 34 #define ddr_clrbits32(a, v) ddr_out32((a), ddr_in32(a) & ~(v)) argument 35 #define ddr_clrsetbits32(a, c, s) ddr_out32((a), (ddr_in32(a) & ~(c)) \ argument
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/dcfg/ |
D | scfg.h | 47 #define scfg_in32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 48 #define scfg_out32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 49 #define scfg_setbits32(a, v) mmio_setbits_32((uintptr_t)(a), v) argument 50 #define scfg_clrbits32(a, v) mmio_clrbits_32((uintptr_t)(a), v) argument 51 #define scfg_clrsetbits32(a, clear, set) \ argument 52 mmio_clrsetbits_32((uintptr_t)(a), clear, set) 54 #define scfg_in32(a) mmio_read_32((uintptr_t)(a)) argument 55 #define scfg_out32(a, v) mmio_write_32((uintptr_t)(a), v) argument 56 #define scfg_setbits32(a, v) mmio_setbits_32((uintptr_t)(a), v) argument 57 #define scfg_clrbits32(a, v) mmio_clrbits_32((uintptr_t)(a), v) argument [all …]
|
D | dcfg.h | 20 #define gur_in32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 21 #define gur_out32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 23 #define gur_in32(a) mmio_read_32((uintptr_t)(a)) argument 24 #define gur_out32(a, v) mmio_write_32((uintptr_t)(a), v) argument
|
/trusted-firmware-a-3.6.0-3.5.0/lib/zlib/ |
D | adler32.c | 27 # define CHOP(a) \ argument 29 unsigned long tmp = a >> 16; \ 30 a &= 0xffffUL; \ 31 a += (tmp << 4) - tmp; \ 33 # define MOD28(a) \ argument 35 CHOP(a); \ 36 if (a >= BASE) a -= BASE; \ 38 # define MOD(a) \ argument 40 CHOP(a); \ 41 MOD28(a); \ [all …]
|
/trusted-firmware-a-3.6.0-3.5.0/services/std_svc/drtm/ |
D | drtm_main.h | 17 #define ALIGNED_UP(x, a) __extension__ ({ \ argument 18 __typeof__(a) _a = (a); \ 19 __typeof__(a) _one = 1; \ 24 #define ALIGNED_DOWN(x, a) __extension__ ({ \ argument 25 __typeof__(a) _a = (a); \ 26 __typeof__(a) _one = 1; \ 34 #define DL_ARGS_GET_DMA_PROT_TYPE(a) (((a)->features >> 3) & 0x7U) argument 35 #define DL_ARGS_GET_PCR_SCHEMA(a) (((a)->features >> 1) & 0x3U) argument 36 #define DL_ARGS_GET_DLME_ENTRY_POINT(a) \ argument 37 (((a)->dlme_paddr + (a)->dlme_img_off + (a)->dlme_img_ep_off))
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/qspi/ |
D | qspi.h | 18 #define qspi_in32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 19 #define qspi_out32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 21 #define qspi_in32(a) mmio_read_32((uintptr_t)(a)) argument 22 #define qspi_out32(a, v) mmio_write_32((uintptr_t)(a), (v)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/arm/cryptocell/713/ |
D | cc_pal_types.h | 51 #define CC_MIN(a,b) min( a , b ) argument 54 #define CC_MIN( a , b ) ( ( (a) < (b) ) ? (a) : (b) ) argument 59 #define CC_MAX(a,b) max( a , b ) argument 62 #define CC_MAX( a , b ) ( ( (a) > (b) ) ? (a) : (b) ) argument
|
/trusted-firmware-a-3.6.0-3.5.0/tools/conventional-changelog-tf-a/templates/ |
D | note-section.hbs | 5 {{#tf-a-mdlist 0}}{{> tf-a-note root=@root showScope=../topLevel }}{{/tf-a-mdlist}} 11 …{{#tf-a-mdlist 0}}{{> tf-a-note-section root=@root header=(tf-a-concat "**" title "**") }}{{/tf-a-…
|
D | template.hbs | 3 {{#each (tf-a-notes noteGroups) ~}} 4 {{> tf-a-note-section root=@root header=(tf-a-concat "### ⚠ " title) topLevel=true }} 7 {{#each (tf-a-commits commitGroups) ~}} 8 {{> tf-a-commit-section root=@root header=(tf-a-concat "### " title) topLevel=true }}
|
D | commit-section.hbs | 6 {{#tf-a-mdlist 0}}{{> commit root=@root showScope=../topLevel }}{{/tf-a-mdlist ~}} 13 …{{#tf-a-mdlist 0}}{{> tf-a-commit-section root=@root header=(tf-a-concat "**" title "**") }}{{/tf-…
|
/trusted-firmware-a-3.6.0-3.5.0/drivers/renesas/rzg/board/ |
D | board.h | 27 #define GET_BOARD_MAJOR(a) ((uint32_t)(a) >> 0x4) argument 28 #define GET_BOARD_MINOR(a) ((uint32_t)(a) & 0xF) argument 29 #define GET_BOARD_NAME(a) (g_board_tbl[(a)]) argument
|
/trusted-firmware-a-3.6.0-3.5.0/drivers/renesas/rcar/board/ |
D | board.h | 31 #define GET_BOARD_MAJOR(a) ((uint32_t)(a) >> 0x4) argument 32 #define GET_BOARD_MINOR(a) ((uint32_t)(a) & 0xF) argument 33 #define GET_BOARD_NAME(a) (g_board_tbl[(a)]) argument
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/gpio/ |
D | nxp_gpio.h | 32 #define gpio_read32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 33 #define gpio_write32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 35 #define gpio_read32(a) mmio_read_32((uintptr_t)(a)) argument 36 #define gpio_write32(a, v) mmio_write_32((uintptr_t)(a), (v)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/tools/nxp/create_pbl/ |
D | create_pbl.mk | 15 SOC_NUM := 1046a 19 SOC_NUM := 1043a 23 SOC_NUM := 1012a 27 SOC_NUM := 1088a 30 SOC_NUM := 2088a 33 SOC_NUM := 2160a 36 SOC_NUM := 1028a
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/crypto/caam/ |
D | caam_io.h | 26 #define sec_in32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 27 #define sec_out32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 35 #define sec_in32(a) mmio_read_32((uintptr_t)(a)) argument 36 #define sec_out32(a, v) mmio_write_32((uintptr_t)(a), (v)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/sec_mon/ |
D | snvs.h | 27 #define snvs_read32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 28 #define snvs_write32(a, v) mmio_write_32((uintptr_t)(a), bswap32((v))) argument 30 #define snvs_read32(a) mmio_read_32((uintptr_t)(a)) argument 31 #define snvs_write32(a, v) mmio_write_32((uintptr_t)(a), (v)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/plat/rockchip/rk3399/drivers/m0/include/ |
D | rk3399_mcu.h | 25 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument 26 #define MAX(a, b) ((a) > (b) ? (a) : (b)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/docs/components/ |
D | debugfs-design.rst | 11 higher SW layers such as a non-secure component. Such component can be the 12 TFTF test payload or a Linux kernel module. 17 The core functionality lies in a virtual file system based on a 9p file server 37 - open(): create a file descriptor that acts as a handle to the file passed as 40 - read(): read from a file to a buffer. 41 - write(): write from a buffer to a file. 42 - seek(): set the file position indicator of a file descriptor either to a 44 - stat(): get information about a file (type, mode, size, ...). 57 - mount(): create a link between a driver and spec. 58 - create(): create a file in a specific location. [all …]
|
/trusted-firmware-a-3.6.0-3.5.0/lib/compiler-rt/builtins/ |
D | divmoddi4.c | 17 COMPILER_RT_ABI di_int __divmoddi4(di_int a, di_int b, di_int *rem) { in __divmoddi4() argument 19 di_int s_a = a >> bits_in_dword_m1; // s_a = a < 0 ? -1 : 0 in __divmoddi4() 21 a = (a ^ s_a) - s_a; // negate if s_a == -1 in __divmoddi4() 25 di_int q = (__udivmoddi4(a, b, &r) ^ s_b) - s_b; // negate if s_b == -1 in __divmoddi4()
|
D | divdi3.c | 19 #define COMPUTE_UDIV(a, b) __udivmoddi4((a), (b), (du_int *)0) argument 22 COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b) { return __divXi3(a, b); } in __divdi3() argument
|
D | int_lib.h | 47 #define STR(a) #a argument 48 #define XSTR(a) STR(a) argument 104 COMPILER_RT_ABI int __paritysi2(si_int a); 105 COMPILER_RT_ABI int __paritydi2(di_int a); 107 COMPILER_RT_ABI di_int __divdi3(di_int a, di_int b); 108 COMPILER_RT_ABI si_int __divsi3(si_int a, si_int b); 111 COMPILER_RT_ABI su_int __udivmodsi4(su_int a, su_int b, su_int *rem); 112 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int *rem); 114 COMPILER_RT_ABI int __clzti2(ti_int a); 115 COMPILER_RT_ABI tu_int __udivmodti4(tu_int a, tu_int b, tu_int *rem);
|
D | ctzdi2.c | 23 #define __builtin_ctz(a) __ctzsi2(a) argument 29 COMPILER_RT_ABI int __ctzdi2(di_int a) { in __ctzdi2() argument 31 x.all = a; in __ctzdi2()
|
/trusted-firmware-a-3.6.0-3.5.0/docs/ |
D | change-log.md | 3 This document contains a summary of the new features, changes, fixes and known 6 ## [2.9.0](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/refs/tags/v… 20 …1](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/9202d51990c192e8bc… 28 …1](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/dee99f10b1dcea0909… 34 …o longer directly configure and boot the NPU in a TZMP1 build. The API version has therefore been … 36 …7](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/6dcf3e774457cf00b9… 38 …- Building the FIP when TZMP1 support is enabled in the NPU driver now requires a parameter to spe… 40 …d](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/33bcaed1211ab27968… 46 …b](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/42d4d3baacb3b11c68… 50 …8](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/1369fb82c8e809c1a5… [all …]
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/sfp/ |
D | sfp.h | 91 #define sfp_read32(a) bswap32(mmio_read_32((uintptr_t)(a))) argument 92 #define sfp_write32(a, v) mmio_write_32((uintptr_t)(a), bswap32(v)) argument 94 #define sfp_read32(a) mmio_read_32((uintptr_t)(a)) argument 95 #define sfp_write32(a, v) mmio_write_32((uintptr_t)(a), (v)) argument
|
/trusted-firmware-a-3.6.0-3.5.0/include/drivers/nxp/i2c/ |
D | i2c.h | 32 #define i2c_in(a) mmio_read_8((uintptr_t)(a)) argument 33 #define i2c_out(a, v) mmio_write_8((uintptr_t)(a), (v)) argument
|