Home
last modified time | relevance | path

Searched refs:unit (Results 1 – 25 of 44) sorted by relevance

12

/rk3399_rockchip-uboot/drivers/ddr/marvell/axp/
H A Dxor_regs.h17 #define MV_XOR_REGS_OFFSET(unit) (0x60900) argument
18 #define MV_XOR_REGS_BASE(unit) (MV_XOR_REGS_OFFSET(unit)) argument
21 #define XOR_CHANNEL_ARBITER_REG(unit) (MV_XOR_REGS_BASE(unit)) argument
22 #define XOR_CONFIG_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + (0x10 + ((chan) * 4))) argument
23 #define XOR_ACTIVATION_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + (0x20 + ((chan) * 4))) argument
26 #define XOR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x30) argument
27 #define XOR_MASK_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x40) argument
28 #define XOR_ERROR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x50) argument
29 #define XOR_ERROR_ADDR_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x60) argument
32 #define XOR_NEXT_DESC_PTR_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + (0x200 + ((chan) * 4))) argument
[all …]
H A Dddr3_axp.h425 #define MV_PEX_IF_REGS_BASE(unit) (MV_PEX_IF_REGS_OFFSET(unit)) argument
/rk3399_rockchip-uboot/drivers/ddr/marvell/a38x/
H A Dxor_regs.h17 #define MV_XOR_REGS_OFFSET(unit) (0x60900) argument
18 #define MV_XOR_REGS_BASE(unit) (MV_XOR_REGS_OFFSET(unit)) argument
21 #define XOR_CHANNEL_ARBITER_REG(unit) (MV_XOR_REGS_BASE(unit)) argument
22 #define XOR_CONFIG_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
24 #define XOR_ACTIVATION_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
28 #define XOR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x30)) argument
29 #define XOR_MASK_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x40)) argument
30 #define XOR_ERROR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x50)) argument
31 #define XOR_ERROR_ADDR_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x60)) argument
34 #define XOR_NEXT_DESC_PTR_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
[all …]
/rk3399_rockchip-uboot/drivers/phy/marvell/
H A Dcomphy_a3700.h74 #define PHY_BASE(unit) ((unit == PCIE) ? PCIEPHY_BASE : USB3PHY_BASE) argument
75 #define PHY_SHFT(unit) ((unit == PCIE) ? PCIEPHY_SHFT : USB3PHY_SHFT) argument
84 #define PWR_PLL_CTRL_ADDR(unit) \ argument
85 (PHY_PWR_PLL_CTRL_ADDR * PHY_SHFT(unit) + PHY_BASE(unit))
94 #define KVCO_CAL_CTRL_ADDR(unit) \ argument
95 (PHY_REG_KVCO_CAL_CTRL_ADDR * PHY_SHFT(unit) + PHY_BASE(unit))
101 #define DIG_LB_EN_ADDR(unit) \ argument
102 (PHY_DIG_LB_EN_ADDR * PHY_SHFT(unit) + PHY_BASE(unit))
108 #define SYNC_PATTERN_ADDR(unit) \ argument
109 (PHY_SYNC_PATTERN_ADDR * PHY_SHFT(unit) + PHY_BASE(unit))
[all …]
/rk3399_rockchip-uboot/drivers/ufs/
H A Dufs-rockchip-usbplug.c80 struct ufs_unit_desc_configuration_param *unit; in ufs_info_show_conf_desc() local
105 unit = &c_desc->unit_desc_conf_param[i]; in ufs_info_show_conf_desc()
110 printf("bLUEnable: 0x%x\n", unit->b_lu_enable); in ufs_info_show_conf_desc()
111 printf("bBootLunID: 0x%x\n", unit->b_boot_lun_id); in ufs_info_show_conf_desc()
112 printf("bLUWriteProtect: 0x%x\n", unit->b_lu_write_protect); in ufs_info_show_conf_desc()
113 printf("bMemoryType: 0x%x\n", unit->b_memory_type); in ufs_info_show_conf_desc()
114 printf("dNumAllocUnits: 0x%x\n", to_bigendian32(unit->d_num_alloc_units)); in ufs_info_show_conf_desc()
115 printf("bDataReliability: 0x%x\n", unit->b_data_reliability); in ufs_info_show_conf_desc()
116 printf("bLogicalBlockSize: 0x%x\n", unit->b_logical_block_size); in ufs_info_show_conf_desc()
117 printf("bProvisioningType: 0x%x\n", unit->b_provisioning_type); in ufs_info_show_conf_desc()
[all …]
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/axp/
H A Dboard_env_spec.h96 #define MV_GPP_REGS_OFFSET(unit) (0x18100 + ((unit) * 0x40)) argument
98 #define MV_GPP_REGS_BASE(unit) (MV_GPP_REGS_OFFSET(unit)) argument
128 #define PEX_PHY_ACCESS_REG(unit) (0x40000 + ((unit) % 2 * 0x40000) + \ argument
129 ((unit)/2 * 0x2000) + 0x1B00)
/rk3399_rockchip-uboot/arch/arm/mach-mvebu/serdes/a38x/
H A Dsys_env_lib.c174 u32 sys_env_unit_max_num_get(enum unit_id unit) in sys_env_unit_max_num_get() argument
178 if (unit >= MAX_UNITS_ID) { in sys_env_unit_max_num_get()
179 printf("%s: Error: Wrong unit type (%u)\n", __func__, unit); in sys_env_unit_max_num_get()
184 return sys_env_soc_unit_nums[unit][dev_id_index]; in sys_env_unit_max_num_get()
H A Dsys_env_lib.h244 #define MV_GPP_REGS_BASE(unit) (0x18100 + ((unit) * 0x40)) argument
361 u32 sys_env_unit_max_num_get(enum unit_id unit);
/rk3399_rockchip-uboot/test/env/
H A DKconfig2 bool "Enable env unit tests"
5 This enables the 'ut env' command which runs a series of unit
/rk3399_rockchip-uboot/test/dm/
H A DKconfig2 bool "Enable driver model unit test command"
5 This enables the 'ut dm' command which runs a series of unit
/rk3399_rockchip-uboot/scripts/dtc/
H A Ddtc.c47 const char *unit; in fill_fullpaths() local
51 unit = strchr(tree->name, '@'); in fill_fullpaths()
52 if (unit) in fill_fullpaths()
53 tree->basenamelen = unit - tree->name; in fill_fullpaths()
/rk3399_rockchip-uboot/doc/device-tree-bindings/serial/
H A Dsh.txt6 - clock: input clock frequency for the SCI unit
/rk3399_rockchip-uboot/doc/uImage.FIT/
H A Dsource_file_format.txt88 are defined in the following sections), the "unit name" of the given sub-node
213 |- default = "default configuration sub-node unit name"
225 - configuration-sub-node-unit-name : At least one of the configuration
236 |- kernel = "kernel sub-node unit name"
237 |- ramdisk = "ramdisk sub-node unit name"
238 |- fdt = "fdt sub-node unit-name" [, "fdt overlay sub-node unit-name", ...]
239 |- fpga = "fpga sub-node unit-name"
240 |- loadables = "loadables sub-node unit-name"
/rk3399_rockchip-uboot/arch/x86/cpu/quark/
H A Dmrc_util.h75 void mrc_write_mask(u32 unit, u32 addr, u32 data, u32 mask);
76 void mrc_alt_write_mask(u32 unit, u32 addr, u32 data, u32 mask);
H A Dmrc_util.c32 void mrc_write_mask(u32 unit, u32 addr, u32 data, u32 mask) in mrc_write_mask() argument
34 msg_port_write(unit, addr, in mrc_write_mask()
35 (msg_port_read(unit, addr) & ~(mask)) | in mrc_write_mask()
39 void mrc_alt_write_mask(u32 unit, u32 addr, u32 data, u32 mask) in mrc_alt_write_mask() argument
41 msg_port_alt_write(unit, addr, in mrc_alt_write_mask()
42 (msg_port_alt_read(unit, addr) & ~(mask)) | in mrc_alt_write_mask()
/rk3399_rockchip-uboot/test/overlay/
H A DKconfig6 This enables the 'ut overlay' command which runs a series of unit
/rk3399_rockchip-uboot/doc/device-tree-bindings/leds/
H A Dcommon.txt5 taken from the node name (excluding the unit address).
/rk3399_rockchip-uboot/doc/device-tree-bindings/usb/
H A Dmarvell.xhci-usb.txt15 - clocks: phandle to system controller clock driving this unit
/rk3399_rockchip-uboot/doc/device-tree-bindings/video/
H A Datmel-hlcdc.txt11 The unit is bits per pixel, there are four values,
/rk3399_rockchip-uboot/doc/device-tree-bindings/misc/
H A Dcros-ec.txt23 the unit address on that bus.
/rk3399_rockchip-uboot/test/
H A DKconfig4 Select this to compile in unit tests for various parts of
/rk3399_rockchip-uboot/arch/x86/
H A Dconfig.mk13 $(call cc-option, -fno-unit-at-a-time))
/rk3399_rockchip-uboot/doc/device-tree-bindings/net/
H A Dethernet.txt10 - max-frame-size: number, maximum transfer unit (IEEE defined MTU), rather than
/rk3399_rockchip-uboot/drivers/video/
H A Divybridge_igd.c373 u32 unit = readl(MCHBAR_REG(0x5938)) & 0xf; in gma_pm_init_pre_vbios() local
382 tdp /= (1 << unit); in gma_pm_init_pre_vbios()
/rk3399_rockchip-uboot/board/freescale/bsc9131rdb/
H A DREADME57 . Memory management unit (MMU)
59 . Debug and profiling unit (DPU)

12