Searched +full:tsi +full:- +full:channel +full:- +full:mask (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/Documentation/devicetree/bindings/hwmon/ |
H A D | nuvoton,nct6775.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 11 - Zev Weiss <zev@bewilderbeest.net> 16 - nuvoton,nct6106 17 - nuvoton,nct6116 18 - nuvoton,nct6775 19 - nuvoton,nct6776 20 - nuvoton,nct6779 21 - nuvoton,nct6791 [all …]
|
/openbmc/linux/drivers/hwmon/ |
H A D | nct6775-i2c.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * nct6775-i2c - I2C driver for the hardware monitoring functionality of 4 * Nuvoton NCT677x Super-I/O chips 13 * operates in a strictly read-only fashion, with the only exception being the 14 * bank-select register (which seems, thankfully, to be replicated for the i2c 22 #include <linux/hwmon-sysfs.h> 34 struct i2c_client *client = data->driver_data; in nct6775_i2c_read() 36 if (bank != data->bank) { in nct6775_i2c_read() 40 data->bank = bank; in nct6775_i2c_read() 66 struct i2c_client *client = data->driver_data; in nct6775_i2c_write() [all …]
|
H A D | nct7904.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * nct7904.c - driver for Nuvoton NCT7904D. 91 #define TSI_CTRL_REG 0x50 /* Bank 2; TSI Control Register */ 92 #define FANCTL1_FMR_REG 0x00 /* Bank 3; 1 reg per channel */ 93 #define FANCTL1_OUT_REG 0x10 /* Bank 3; 1 reg per channel */ 110 /*The timeout range is 1-255 minutes*/ 149 mutex_lock(&data->bank_lock); in nct7904_bank_lock() 150 if (data->bank_sel == bank) in nct7904_bank_lock() 152 ret = i2c_smbus_write_byte_data(data->client, BANK_SEL_REG, bank); in nct7904_bank_lock() 154 data->bank_sel = bank; in nct7904_bank_lock() [all …]
|
/openbmc/u-boot/board/freescale/m54455evb/ |
H A D | README | 4 TsiChung Liew(Tsi-Chung.Liew@freescale.com) 12 - board/freescale/m54455evb/m54455evb.c Dram setup, IDE pre init, and PCI init 13 - board/freescale/m54455evb/flash.c Atmel and INTEL flash support 14 - board/freescale/m54455evb/Makefile Makefile 15 - board/freescale/m54455evb/config.mk config make 16 - board/freescale/m54455evb/u-boot.lds Linker description 18 - common/cmd_bdinfo.c Clock frequencies output 19 - common/cmd_mii.c mii support 21 - arch/m68k/cpu/mcf5445x/cpu.c cpu specific code 22 - arch/m68k/cpu/mcf5445x/cpu_init.c Flexbus ChipSelect, Mux pins setup, icache and RTC extra regs [all …]
|
/openbmc/u-boot/arch/arm/include/asm/arch-pxa/ |
H A D | pxa-regs.h | 2 * linux/include/asm-arm/arch-pxa/pxa-regs.h 12 * - 2003/01/20: Robert Schwebel <r.schwebel@pengutronix.de 13 * Original file taken from linux-2.4.19-rmk4-pxa1. Added some definitions. 22 /* FIXME hack so that SA-1111.h will work [cb] */ 96 #define DCSR0 0x40000000 /* DMA Control / Status Register for Channel 0 */ 97 #define DCSR1 0x40000004 /* DMA Control / Status Register for Channel 1 */ 98 #define DCSR2 0x40000008 /* DMA Control / Status Register for Channel 2 */ 99 #define DCSR3 0x4000000c /* DMA Control / Status Register for Channel 3 */ 100 #define DCSR4 0x40000010 /* DMA Control / Status Register for Channel 4 */ 101 #define DCSR5 0x40000014 /* DMA Control / Status Register for Channel 5 */ [all …]
|
/openbmc/linux/drivers/atm/ |
H A D | nicstar.h | 1 /* SPDX-License-Identifier: GPL-2.0 */ 56 #define NUM_HB 8 /* Pre-allocated huge buffers */ 107 #define NS_MAX_IOVECS (2 + (65568 - NS_SMBUFSIZE) / \ 108 (NS_LGBUFSIZE - (NS_LGBUFSIZE % 48))) 111 #define NS_SMBUFSIZE_USABLE (NS_SMBUFSIZE - NS_SMBUFSIZE % 48) 112 #define NS_LGBUFSIZE_USABLE (NS_LGBUFSIZE - NS_LGBUFSIZE % 48) 114 #define NS_AAL0_HEADER (ATM_AAL0_SDU - ATM_CELL_PAYLOAD) /* 4 bytes */ 122 * RSQ - Receive Status Queue 135 ((le32_to_cpu((ns_rsqep)->word_1) & 0x00FF0000) >> 16) 137 (le32_to_cpu((ns_rsqep)->word_1) & 0x0000FFFF) [all …]
|
H A D | nicstar.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 * It was taken from the frle-0.22 device driver. 11 * frle-0.22 device driver. 26 * 1 - Per card interrupt spinlock (to protect structures and such) 27 * 2 - Per SCQ scq spinlock 28 * 3 - Per card resource spinlock (to access registers, etc.) 42 #include <linux/dma-mapping.h> 105 #define CMD_BUSY(card) (readl((card)->membase + STAT) & NS_STAT_CMDBZ) 109 #define PTR_DIFF(a, b) ((u32)((unsigned long)(a) - (unsigned long)(b))) 112 #define ATM_SKB(s) (&(s)->atm) [all …]
|