/openbmc/linux/arch/arc/plat-hsdk/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 2 # Copyright (C) 2017 Synopsys, Inc. (www.synopsys.com) 6 bool "ARC HS Development Kit SOC"
|
H A D | platform.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * ARC HSDK Platform support code 5 * Copyright (C) 2017 Synopsys, Inc. (www.synopsys.com) 36 * --------------------- in hsdk_enable_gpio_intc_wire() 37 * | snps,archs-intc | in hsdk_enable_gpio_intc_wire() 38 * --------------------- in hsdk_enable_gpio_intc_wire() 40 * ---------------------- in hsdk_enable_gpio_intc_wire() 41 * | snps,archs-idu-intc | in hsdk_enable_gpio_intc_wire() 42 * ---------------------- in hsdk_enable_gpio_intc_wire() 46 * ------------------- in hsdk_enable_gpio_intc_wire() [all …]
|
/openbmc/linux/include/soc/arc/ |
H A D | aux.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * Copyright (C) 2016-2017 Synopsys, Inc. (www.synopsys.com) 25 * see: https://lists.infradead.org/pipermail/linux-snps-arc/2016-November/001748.html
|
/openbmc/linux/drivers/clk/ |
H A D | clk-hsdk-pll.c | 1 // SPDX-License-Identifier: GPL-2.0-only 5 * Copyright (C) 2017 Synopsys 8 #include <linux/clk-provider.h> 18 #define CGU_PLL_CTRL 0x000 /* ARC PLL control register */ 19 #define CGU_PLL_STATUS 0x004 /* ARC PLL status register */ 20 #define CGU_PLL_FMEAS 0x008 /* ARC PLL frequency measurement register */ 21 #define CGU_PLL_MON 0x00C /* ARC PLL monitor register */ 123 iowrite32(val, clk->regs + reg); in hsdk_pll_write() 128 return ioread32(clk->regs + reg); in hsdk_pll_read() 136 if (cfg->bypass) { in hsdk_pll_set_cfg() [all …]
|
/openbmc/u-boot/drivers/clk/ |
H A D | clk-hsdk-cgu.c | 4 * Copyright (C) 2017 Synopsys 13 #include <clk-uclass.h> 19 * Synopsys ARC HSDK clock tree. 21 * ------------------ 23 * ------------------ 25 * | ----------- 26 * |-->| ARC PLL | 27 * | ----------- 29 * | |-->|CGU_ARC_IDIV|-----------> 30 * | |-->|CREG_CORE_IF_DIV|-------> [all …]
|
/openbmc/linux/arch/arc/boot/dts/ |
H A D | hsdk.dts | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Copyright (C) 2017 Synopsys, Inc. (www.synopsys.com) 7 * Device Tree for ARC HS Development Kit 9 /dts-v1/; 11 #include <dt-bindings/gpio/gpio.h> 12 #include <dt-bindings/reset/snps,hsdk-reset.h> 18 #address-cells = <2>; 19 #size-cells = <2>; 22 … "earlycon=uart8250,mmio32,0xf0005000,115200n8 console=ttyS0,115200n8 debug print-fatal-signals=1"; 30 #address-cells = <1>; [all …]
|
/openbmc/u-boot/ |
H A D | MAINTAINERS | 8 W: Web-page with status/info 24 N: [^a-z]tegra all files whose path contains the word tegra 52 ----------------------------------- 53 ARC 57 L: uboot-snps-arc@synopsys.com 58 T: git git://git.denx.de/u-boot-arc.git 59 F: arch/arc/ 62 ARC HSDK CGU CLOCK 65 L: uboot-snps-arc@synopsys.com 66 F: drivers/clk/clk-hsdk-cgu.c [all …]
|
/openbmc/linux/arch/arm64/boot/dts/freescale/ |
H A D | imx8mq-evk.dts | 1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 3 * Copyright 2017 NXP 4 * Copyright (C) 2017-2018 Pengutronix, Lucas Stach <kernel@pengutronix.de> 7 /dts-v1/; 13 compatible = "fsl,imx8mq-evk", "fsl,imx8mq"; 16 stdout-path = &uart1; 24 pcie0_refclk: pcie0-refclk { 25 compatible = "fixed-clock"; 26 #clock-cells = <0>; 27 clock-frequency = <100000000>; [all …]
|
/openbmc/linux/arch/openrisc/kernel/ |
H A D | smp.c | 3 * Copyright (C) 2017 Stafford Horne <shorne@gmail.com> 5 * Based on arm64 and arc implementations 7 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) 30 unsigned long secondary_release = -1; 101 return -EIO; in __cpu_up() 111 return -EIO; in __cpu_up() 127 current->active_mm = mm; in secondary_start_kernel() 217 /* TLB flush operations - Performed on each CPU*/ 257 local_flush_tlb_page(NULL, fd->addr1); in ipi_flush_tlb_page() 264 local_flush_tlb_range(NULL, fd->addr1, fd->addr2); in ipi_flush_tlb_range() [all …]
|
/openbmc/linux/drivers/clk/axs10x/ |
H A D | pll_clock.c | 1 // SPDX-License-Identifier: GPL-2.0-only 5 * Copyright (C) 2017 Synopsys 10 #include <linux/clk-provider.h> 28 * |-------RESRVED------|-NOUPDATE-|-BYPASS-|-EDGE-|--HIGHTIME--|--LOWTIME--| 101 iowrite32(val, clk->base + reg); in axs10x_pll_write() 106 return ioread32(clk->base + reg); in axs10x_pll_read() 158 const struct axs10x_pll_cfg *pll_cfg = clk->pll_cfg; in axs10x_pll_round_rate() 161 return -EINVAL; in axs10x_pll_round_rate() 166 if (abs(rate - pll_cfg[i].rate) < abs(rate - best_rate)) in axs10x_pll_round_rate() 178 const struct axs10x_pll_cfg *pll_cfg = clk->pll_cfg; in axs10x_pll_set_rate() [all …]
|
/openbmc/linux/drivers/platform/x86/ |
H A D | touchscreen_dmi.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Copyright (c) 2017 Red Hat Inc. 21 /* The EFI embedded-fw code expects this to be the first member! */ 30 PROPERTY_ENTRY_U32("touchscreen-size-x", 1850), 31 PROPERTY_ENTRY_U32("touchscreen-size-y", 1280), 32 PROPERTY_ENTRY_BOOL("touchscreen-inverted-y"), 33 PROPERTY_ENTRY_BOOL("touchscreen-swapped-x-y"), 34 PROPERTY_ENTRY_U32("silead,max-fingers", 10), 35 PROPERTY_ENTRY_BOOL("silead,home-button"), 36 PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-archos-101-cesium-educ.fw"), [all …]
|
/openbmc/linux/drivers/gpu/drm/msm/adreno/ |
H A D | a6xx_gmu.c | 1 // SPDX-License-Identifier: GPL-2.0 2 /* Copyright (c) 2017-2019 The Linux Foundation. All rights reserved. */ 10 #include <soc/qcom/cmd-db.h> 22 struct adreno_gpu *adreno_gpu = &a6xx_gpu->base; in a6xx_gmu_fault() 23 struct msm_gpu *gpu = &adreno_gpu->base; in a6xx_gmu_fault() 26 gmu->hung = true; in a6xx_gmu_fault() 29 del_timer(&gpu->hangcheck_timer); in a6xx_gmu_fault() 32 kthread_queue_work(gpu->worker, &gpu->recover_work); in a6xx_gmu_fault() 44 dev_err_ratelimited(gmu->dev, "GMU watchdog expired\n"); in a6xx_gmu_irq() 50 dev_err_ratelimited(gmu->dev, "GMU AHB bus error\n"); in a6xx_gmu_irq() [all …]
|
/openbmc/linux/drivers/net/wireless/ath/wil6210/ |
H A D | main.c | 1 // SPDX-License-Identifier: ISC 3 * Copyright (c) 2012-2017 Qualcomm Atheros, Inc. 4 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. 47 unsigned int mtu_max = TXRX_BUF_LEN_DEFAULT - WIL_MAX_MPDU_OVERHEAD; 60 ret = -EINVAL; in mtu_max_set() 87 return -EINVAL; in ring_order_set() 89 *((uint *)kp->arg) = x; in ring_order_set() 131 * one has to read/write to/from NIC in 32-bit chunks; 133 * not work on 64-bit platform - it uses 64-bit transactions 135 * Force 32-bit transactions to enable NIC on 64-bit platforms [all …]
|
/openbmc/linux/drivers/net/ethernet/ |
H A D | korina.c | 2 * Driver for the IDT RC32434 (Korina) on-chip ethernet controller. 7 * Copyright 2017 Roman Yeryomin <roman@advem.lv> 127 /* Ethernet ARC/multicast registers */ 149 /* Ethernet CFSA[0-3] registers */ 300 #define STATION_ADDRESS_HIGH(dev) (((dev)->dev_addr[0] << 8) | \ 301 ((dev)->dev_addr[1])) 302 #define STATION_ADDRESS_LOW(dev) (((dev)->dev_addr[2] << 24) | \ 303 ((dev)->dev_addr[3] << 16) | \ 304 ((dev)->dev_addr[4] << 8) | \ 305 ((dev)->dev_addr[5])) [all …]
|
/openbmc/linux/drivers/scsi/aacraid/ |
H A D | src.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 9 * Copyright (c) 2000-2010 Adaptec, Inc. 10 * 2010-2015 PMC-Sierra, Inc. (aacraid@pmc-sierra.com) 11 * 2016-2017 Microsemi Corp. (aacraid@microsemi.com) 46 dev = ctx->dev; in aac_src_intr_message() 47 vector_no = ctx->vector_no; in aac_src_intr_message() 49 if (dev->msi_enabled) { in aac_src_intr_message() 83 if (!aac_sync_mode && !dev->msi_enabled) { in aac_src_intr_message() 88 if (dev->sync_fib) { in aac_src_intr_message() 89 if (dev->sync_fib->callback) in aac_src_intr_message() [all …]
|
H A D | aachba.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 9 * Copyright (c) 2000-2010 Adaptec, Inc. 10 * 2010-2015 PMC-Sierra, Inc. (aacraid@pmc-sierra.com) 11 * 2016-2017 Microsemi Corp. (aacraid@microsemi.com) 40 #define INQD_PDT_DA 0x00 /* Direct-access (DISK) device */ 143 /*------------------------------------------------------------------------------ 145 *----------------------------------------------------------------------------*/ 150 u8 inqd_ver; /* ISO version | ECMA version | ANSI-approved version */ 152 u8 inqd_len; /* Additional length (n-4) */ 153 u8 inqd_pad1[2];/* Reserved - must be zero */ [all …]
|
/openbmc/linux/drivers/thunderbolt/ |
H A D | icm.c | 1 // SPDX-License-Identifier: GPL-2.0 4 * the Thunderbolt host controller performing most of the low-level 7 * Copyright (C) 2017, Intel Corporation 53 * struct usb4_switch_nvm_auth - Holds USB4 NVM_AUTH status 65 * struct icm - Internal connection manager private data 158 if (!ep->len) in parse_intel_vss() 160 if (ep_name + ep->len > end) in parse_intel_vss() 163 if (ep->type == EP_NAME_INTEL_VSS) in parse_intel_vss() 164 return (const struct intel_vss *)ep->data; in parse_intel_vss() 166 ep_name += ep->len; in parse_intel_vss() [all …]
|
/openbmc/qemu/tests/data/qobject/ |
H A D | qdict.txt | 1 00-INDEX: 333 55 3.Early-stage: 9993 56 3w-9xxx.c: 77318 57 3w-9xxx.h: 26357 58 3w-xxxx.c: 85227 59 3w-xxxx.h: 16846 71 4level-fixup.h: 1028 110 6xx-suspend.S: 1086 148 8250-platform.c: 1091 161 83xx-512x-pci.txt: 1323 [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
H A D | 0008-Use-libtool-2.4.patch | 8 Upstream-Status: Pending 10 Signed-off-by: Khem Raj <raj.khem@gmail.com> 11 --- 13 bfd/configure | 1333 +++++++++--- 14 bfd/configure.ac | 2 +- 16 binutils/configure | 1331 +++++++++--- 18 gas/configure | 1331 +++++++++--- 20 gprof/configure | 1331 +++++++++--- 22 gprofng/configure | 1693 ++++++++++++---- 24 gprofng/gp-display-html/Makefile.in | 2 + [all …]
|
/openbmc/linux/ |
H A D | CREDITS | 1 This is at least a partial credits-file of people that have 4 scripts. The fields are: name (N), email (E), web-address 6 snail-mail address (S). 10 ---------- 51 D: in-kernel DRM Maintainer 71 E: tim_alpaerts@toyota-motor-europe.com 75 S: B-2610 Wilrijk-Antwerpen 80 W: http://www-stu.christs.cam.ac.uk/~aia21/ 101 D: Maintainer of ide-cd and Uniform CD-ROM driver, 102 D: ATAPI CD-Changer support, Major 2.1.x CD-ROM update. [all …]
|
H A D | opengrok1.0.log | 1 2024-12-28 20:07:11.902-0600 FINER t583 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' 2 2024-12-28 20:07:11.913-0600 FINEST t583 Statistics.logIt: Added: '/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' (CAnalyzer) (took 116 ms) 3 2024-12-28 20:07:11.899-0600 FINER t593 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/tools/testing/selftests/powerpc/tm/tm-signa [all...] |
H A D | opengrok0.0.log | 1 2024-12-28 20:09:05.996-0600 FINEST t1171 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/linux/drivers/staging/media/av7110/video-continue.rst.gz' 2 2024-12-28 20:09:05.942-0600 FINEST t1149 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/u-boot/arch/sh/config.mk.gz' 3 2024-12-2 [all...] |
H A D | opengrok2.0.log | 1 2024-12-28 20:05:26.116-0600 FINEST t586 Statistics.logIt: Added: '/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/rtnetlink.sh' (ShAnalyzer) (took 79 ms) 2 2024-12-28 20:05:26.112-0600 FINER t592 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/qemu',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/qemu/chardev/spice.c' 3 2024-12-28 20:05:26.116-0600 FINEST t592 Statistics.logIt: Added: '/openbmc/qemu/chardev/spice.c' (CAnalyzer) (took 33 ms) 4 2024-1 [all...] |
/openbmc/ |
D | opengrok1.0.log | 1 2025-03-15 03:00:37.236-0500 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-03-15 03:00:37.352-0500 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |
D | opengrok2.0.log | 1 2025-03-14 03:00:40.378-0500 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler 2 2025-03-14 03:00:40.496-0500 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, - [all...] |