Home
last modified time | relevance | path

Searched +full:ddr +full:- +full:sel (Results 1 – 13 of 13) sorted by relevance

/openbmc/u-boot/drivers/power/regulator/
H A Dstpmu1.c1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
44 static int stpmu1_output_find_uv(int sel, in stpmu1_output_find_uv() argument
50 for (i = 0, range = output_range->ranges; in stpmu1_output_find_uv()
51 i < output_range->nbranges; i++, range++) { in stpmu1_output_find_uv()
52 if (sel >= range->min_sel && sel <= range->max_sel) in stpmu1_output_find_uv()
53 return range->min_uv + in stpmu1_output_find_uv()
54 (sel - range->min_sel) * range->step; in stpmu1_output_find_uv()
57 return -EINVAL; in stpmu1_output_find_uv()
66 for (i = 0, range = output_range->ranges; in stpmu1_output_find_sel()
[all …]
/openbmc/qemu/hw/arm/
H A Dxlnx-versal.c22 #include "hw/arm/xlnx-versal.h"
24 #include "target/arm/cpu-qom.h"
27 #define XLNX_VERSAL_ACPU_TYPE ARM_CPU_TYPE_NAME("cortex-a72")
28 #define XLNX_VERSAL_RCPU_TYPE ARM_CPU_TYPE_NAME("cortex-r5f")
38 object_initialize_child(OBJECT(s), "apu-cluster", &s->fpd.apu.cluster, in versal_create_apu_cpus()
40 qdev_prop_set_uint32(DEVICE(&s->fpd.apu.cluster), "cluster-id", 0); in versal_create_apu_cpus()
42 for (i = 0; i < ARRAY_SIZE(s->fpd.apu.cpu); i++) { in versal_create_apu_cpus()
45 object_initialize_child(OBJECT(&s->fpd.apu.cluster), in versal_create_apu_cpus()
46 "apu-cpu[*]", &s->fpd.apu.cpu[i], in versal_create_apu_cpus()
48 obj = OBJECT(&s->fpd.apu.cpu[i]); in versal_create_apu_cpus()
[all …]
/openbmc/u-boot/board/hisilicon/hikey/
H A DREADME4 HiKey is the first certified 96Boards Consumer Edition board. The board/SoC has: -
5 * HiSilicon Kirin 6220 eight-core ARM Cortex-A53 64-bit SoC running at 1.2GHz.
6 * ARM Mali 450-MP4 GPU
12 The HiKey schematic can be found here: -
13 https://github.com/96boards/documentation/blob/master/consumer/hikey/hikey620/hardware-docs/HiKey_s…
15 The SoC datasheet can be found here: -
16 …boards/documentation/blob/master/consumer/hikey/hikey620/hardware-docs/Hi6220V100_Multi-Mode_Appli…
18 Currently the u-boot port supports: -
24 The HiKey U-Boot port has been tested with l-loader, booting ATF, which then boots
25 U-Boot as the bl33.bin executable.
[all …]
/openbmc/u-boot/drivers/clk/
H A Dclk_stm32mp1.c1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
7 #include <clk-uclass.h>
15 #include <dt-bindings/clock/stm32mp1-clks.h>
16 #include <dt-bindings/clock/stm32mp1-clksrc.h>
380 u8 sel; member
406 const struct stm32mp1_clk_sel *sel; member
424 .sel = (s), \
434 .sel = _UNKNOWN_SEL, \
444 .sel = (s), \
[all …]
/openbmc/pldm/oem/ampere/event/
H A Doem_event_manager.hpp6 #include "platform-mc/manager.hpp"
86 * Bit 30:24 | Media slot number (0 - 63) This field can be used by UEFI
91 * Bit 22 | Action: 0 - Insertion 1 - Removal
131 namespace ddr namespace
146 } // namespace ddr
209 * Bit 15:8 | VR status byte high - The bit definition is the same as the
211 * Bit 7:0 | VR status byte low - The bit definition is the same as the
252 * @param[in] request - the request message of sensor event
253 * @param[in] payloadLength - the payload length of sensor event
254 * @param[in] formatVersion - the format version of sensor event
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Drk3399-gru.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
5 * Copyright 2016-2017 Google, Inc
8 #include <dt-bindings/input/input.h>
10 #include "rk3399-op1-opp.dtsi"
14 u-boot,dm-pre-reloc;
15 stdout-path = "serial2:115200n8";
16 u-boot,spl-boot-order = &spi_flash;
20 u-boot,spl-payload-offset = <0x40000>;
29 * - Rails that only connect to the EC (or devices that the EC talks to)
31 * - Rails _are_ included if the rails go to the AP even if the AP
[all …]
H A Ddra7.dtsi2 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
10 #include <dt-bindings/interrupt-controller/arm-gic.h>
11 #include <dt-bindings/pinctrl/dra.h>
16 #address-cells = <2>;
17 #size-cells = <2>;
20 interrupt-parent = <&crossbar_mpu>;
47 compatible = "arm,armv7-timer";
52 interrupt-parent = <&gic>;
55 gic: interrupt-controller@48211000 {
56 compatible = "arm,cortex-a15-gic";
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dsunxi_nand.c1 // SPDX-License-Identifier: GPL-2.0+
7 * https://github.com/yuq/sunxi-nfc-mtd
10 * https://github.com/hno/Allwinner-Info
78 #define NFC_PAGE_SHIFT(x) (((x) < 10 ? 0 : (x) - 10) << 8)
114 #define NFC_ADR_NUM(x) (((x) - 1) << 16)
292 div_m = (clock_get_pll6() + hz - 1) / hz; in sunxi_nfc_set_clk_rate()
304 &ccm->nand0_clk_cfg); in sunxi_nfc_set_clk_rate()
307 setbits_le32(&ccm->ahb_gate0, (1 << AHB_GATE_OFFSET_NAND0)); in sunxi_nfc_set_clk_rate()
309 setbits_le32(&ccm->ahb_gate1, (1 << AHB_GATE_OFFSET_DMA)); in sunxi_nfc_set_clk_rate()
311 setbits_le32(&ccm->ahb_gate0, (1 << AHB_GATE_OFFSET_DMA)); in sunxi_nfc_set_clk_rate()
[all …]
/openbmc/u-boot/drivers/usb/gadget/
H A Ddwc2_udc_otg.c1 // SPDX-License-Identifier: GPL-2.0+
4 * Designware DWC2 on-chip full/high speed USB OTG 2.0 device controllers
10 * git://git.kernel.org/pub/scm/linux/kernel/git/kki_ap/linux-2.6-samsung.git
15 * Ported to u-boot:
32 #include <asm/mach-types.h>
68 static const char driver_name[] = "dwc2-udc";
69 static const char ep0name[] = "ep0-control";
115 the_controller->gadget.dev.device_data = p; in set_udc_gadget_private_data()
120 return gadget->dev.device_data; in get_udc_gadget_private_data()
148 return !!(readl(&reg->gintsts) & INT_RESET); in dfu_usb_get_reset()
[all …]
/openbmc/u-boot/arch/arm/mach-exynos/
H A Dexynos5_setup.h1 /* SPDX-License-Identifier: GPL-2.0+ */
168 /* SCLK_SRC_ISP - set SPI0/1 to 6 = SCLK_MPLL_USER */
174 /* SCLK_DIV_ISP - set SPI0/1 to 0xf = divide by 16 */
239 /* AUDIO CLK SEL */
889 /* Errors that we can encourter in low-level setup */
892 SETUP_ERR_RDLV_COMPLETE_TIMEOUT = -1,
893 SETUP_ERR_ZQ_CALIBRATION_FAILURE = -2,
900 * @param reset Reset DDR PHY during initialization.
912 * @param phy0_con16 Register address for dmc_phy0->phy_con16
913 * @param phy1_con16 Register address for dmc_phy1->phy_con16
[all …]
/openbmc/fb-ipmi-oem/src/
H A Doemcommands.cpp3 * Copyright (c) 2018-present Facebook.
9 * http://www.apache.org/licenses/LICENSE-2.0
22 #include <ipmid/api-types.hpp>
27 #include <phosphor-logging/log.hpp>
77 constexpr const char* certPath = "/mnt/data/host/bios-rootcert";
83 static constexpr const char* FRU_EEPROM = "/sys/bus/i2c/devices/6-0054/eeprom";
139 ipmi::getDbusProperty(bus, object.second.begin()->first, in getIPObject()
146 variant = ipmi::getDbusProperty(bus, object.second.begin()->first, in getIPObject()
149 objectInfo = std::make_pair(object.first, object.second.begin()->first); in getIPObject()
151 // if LinkLocalIP found look for Non-LinkLocalIP in getIPObject()
[all …]
/openbmc/
Dopengrok1.0.log1 2025-12-17 03:01:15.589-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-12-17 03:01:15.664-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]
Dopengrok2.0.log1 2025-12-16 03:01:16.893-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-12-16 03:01:16.967-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]