| /kernel/linux/linux-6.6/drivers/spi/ |
| D | spi-rockchip.c | 1 // SPDX-License-Identifier: GPL-2.0-only 4 * Author: Addy Ke <addy.ke@rock-chips.com> 18 #define DRIVER_NAME "rockchip-spi" 158 * SPI_CTRLR1 is 16-bits, so we should support lengths of 0xffff + 1. However, 163 /* 2 for native cs, 2 for cs-gpio */ 199 bool cs_high_supported; /* native CS supports active-high polarity */ 204 static inline void spi_enable_chip(struct rockchip_spi *rs, bool enable) in spi_enable_chip() argument 206 writel_relaxed((enable ? 1U : 0U), rs->regs + ROCKCHIP_SPI_SSIENR); in spi_enable_chip() 209 static inline void wait_for_tx_idle(struct rockchip_spi *rs, bool target_mode) in wait_for_tx_idle() argument 215 if (!(readl_relaxed(rs->regs + ROCKCHIP_SPI_SR) & SR_TARGET_TX_BUSY) && in wait_for_tx_idle() [all …]
|
| D | spi-mt7621.c | 1 // SPDX-License-Identifier: GPL-2.0 3 // spi-mt7621.c -- MediaTek MT7621 SPI controller driver 6 // Copyright (C) 2011-2013 Gabor Juhos <juhosg@openwrt.org> 7 // Copyright (C) 2014-2015 Felix Fietkau <nbd@nbd.name> 9 // Some parts are based on spi-orion.c: 11 // Copyright (C) 2007-2008 Marvell Ltd. 23 #define DRIVER_NAME "spi-mt7621" 65 return spi_controller_get_devdata(spi->master); in spidev_to_mt7621_spi() 68 static inline u32 mt7621_spi_read(struct mt7621_spi *rs, u32 reg) in mt7621_spi_read() argument 70 return ioread32(rs->base + reg); in mt7621_spi_read() [all …]
|
| /kernel/linux/linux-6.6/drivers/md/ |
| D | dm-raid.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Copyright (C) 2010-2011 Neil Brown 4 * Copyright (C) 2010-2018 Red Hat, Inc. All rights reserved. 16 #include "md-bitmap.h" 18 #include <linux/device-mapper.h> 21 #define MAX_RAID_DEVICES 253 /* md-raid kernel limit */ 36 * The following flags are used by dm-raid to set up the array state. 45 * ti->len and give more flexibility in altering size and 51 * |--------- Physical Device ---------| 52 * |- meta_dev -|------ data_dev ------| [all …]
|
| /kernel/linux/linux-5.10/drivers/md/ |
| D | dm-raid.c | 2 * Copyright (C) 2010-2011 Neil Brown 3 * Copyright (C) 2010-2018 Red Hat, Inc. All rights reserved. 15 #include "md-bitmap.h" 17 #include <linux/device-mapper.h> 20 #define MAX_RAID_DEVICES 253 /* md-raid kernel limit */ 35 * The following flags are used by dm-raid.c to set up the array state. 44 * ti->len and give more flexibility in altering size and 50 * |--------- Physical Device ---------| 51 * |- meta_dev -|------ data_dev ------| 59 * Bits for establishing rs->ctr_flags [all …]
|
| /kernel/linux/linux-5.10/drivers/spi/ |
| D | spi-rockchip.c | 1 // SPDX-License-Identifier: GPL-2.0-only 4 * Author: Addy Ke <addy.ke@rock-chips.com> 18 #define DRIVER_NAME "rockchip-spi" 154 * SPI_CTRLR1 is 16-bits, so we should support lengths of 0xffff + 1. However, 193 static inline void spi_enable_chip(struct rockchip_spi *rs, bool enable) in spi_enable_chip() argument 195 writel_relaxed((enable ? 1U : 0U), rs->regs + ROCKCHIP_SPI_SSIENR); in spi_enable_chip() 198 static inline void wait_for_idle(struct rockchip_spi *rs) in wait_for_idle() argument 203 if (!(readl_relaxed(rs->regs + ROCKCHIP_SPI_SR) & SR_BUSY)) in wait_for_idle() 207 dev_warn(rs->dev, "spi controller is in busy state!\n"); in wait_for_idle() 210 static u32 get_fifo_len(struct rockchip_spi *rs) in get_fifo_len() argument [all …]
|
| D | spi-mt7621.c | 1 // SPDX-License-Identifier: GPL-2.0 3 // spi-mt7621.c -- MediaTek MT7621 SPI controller driver 6 // Copyright (C) 2011-2013 Gabor Juhos <juhosg@openwrt.org> 7 // Copyright (C) 2014-2015 Felix Fietkau <nbd@nbd.name> 9 // Some parts are based on spi-orion.c: 11 // Copyright (C) 2007-2008 Marvell Ltd. 21 #define DRIVER_NAME "spi-mt7621" 64 return spi_controller_get_devdata(spi->master); in spidev_to_mt7621_spi() 67 static inline u32 mt7621_spi_read(struct mt7621_spi *rs, u32 reg) in mt7621_spi_read() argument 69 return ioread32(rs->base + reg); in mt7621_spi_read() [all …]
|
| /kernel/linux/linux-6.6/net/rds/ |
| D | af_rds.c | 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 61 struct sock *sk = sock->sk; in rds_release() 62 struct rds_sock *rs; in rds_release() local 67 rs = rds_sk_to_rs(sk); in rds_release() 70 /* Note - rds_clear_recv_queue grabs rs_recv_lock, so in rds_release() 73 rds_clear_recv_queue(rs); in rds_release() 74 rds_cong_remove_socket(rs); in rds_release() 76 rds_remove_bound(rs); in rds_release() 78 rds_send_drop_to(rs, NULL); in rds_release() [all …]
|
| D | bind.c | 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 70 * marked this socket and don't return a rs ref to the rx path. 76 struct rds_sock *rs; in rds_find_bound() local 80 rs = rhashtable_lookup(&bind_hash_table, key, ht_parms); in rds_find_bound() 81 if (rs && (sock_flag(rds_rs_to_sk(rs), SOCK_DEAD) || in rds_find_bound() 82 !refcount_inc_not_zero(&rds_rs_to_sk(rs)->sk_refcnt))) in rds_find_bound() 83 rs = NULL; in rds_find_bound() 87 rdsdebug("returning rs %p for %pI6c:%u\n", rs, addr, in rds_find_bound() 90 return rs; in rds_find_bound() [all …]
|
| /kernel/linux/linux-5.10/net/rds/ |
| D | af_rds.c | 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 61 struct sock *sk = sock->sk; in rds_release() 62 struct rds_sock *rs; in rds_release() local 67 rs = rds_sk_to_rs(sk); in rds_release() 70 /* Note - rds_clear_recv_queue grabs rs_recv_lock, so in rds_release() 73 rds_clear_recv_queue(rs); in rds_release() 74 rds_cong_remove_socket(rs); in rds_release() 76 rds_remove_bound(rs); in rds_release() 78 rds_send_drop_to(rs, NULL); in rds_release() [all …]
|
| D | bind.c | 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 70 * marked this socket and don't return a rs ref to the rx path. 76 struct rds_sock *rs; in rds_find_bound() local 80 rs = rhashtable_lookup(&bind_hash_table, key, ht_parms); in rds_find_bound() 81 if (rs && (sock_flag(rds_rs_to_sk(rs), SOCK_DEAD) || in rds_find_bound() 82 !refcount_inc_not_zero(&rds_rs_to_sk(rs)->sk_refcnt))) in rds_find_bound() 83 rs = NULL; in rds_find_bound() 87 rdsdebug("returning rs %p for %pI6c:%u\n", rs, addr, in rds_find_bound() 90 return rs; in rds_find_bound() [all …]
|
| /kernel/linux/linux-5.10/lib/reed_solomon/ |
| D | reed_solomon.c | 1 // SPDX-License-Identifier: GPL-2.0 13 * encoding / decoding of RS codes. 16 * for the given rs parameters. The control struct is unique per instance. 52 /* This list holds all currently allocated rs codec structures */ 58 * codec_init - Initialize a Reed-Solomon codec 59 * @symsize: symbol size, bits (1-8) 62 * @fcr: first root of RS code generator polynomial, index form 64 * @nroots: RS code generator polynomial degree (number of roots) 74 struct rs_codec *rs; in codec_init() local 76 rs = kzalloc(sizeof(*rs), gfp); in codec_init() [all …]
|
| /kernel/linux/linux-6.6/lib/reed_solomon/ |
| D | reed_solomon.c | 1 // SPDX-License-Identifier: GPL-2.0 13 * encoding / decoding of RS codes. 16 * for the given rs parameters. The control struct is unique per instance. 52 /* This list holds all currently allocated rs codec structures */ 58 * codec_init - Initialize a Reed-Solomon codec 59 * @symsize: symbol size, bits (1-8) 62 * @fcr: first root of RS code generator polynomial, index form 64 * @nroots: RS code generator polynomial degree (number of roots) 74 struct rs_codec *rs; in codec_init() local 76 rs = kzalloc(sizeof(*rs), gfp); in codec_init() [all …]
|
| /kernel/linux/linux-6.6/fs/jffs2/ |
| D | compr_rubin.c | 2 * JFFS2 -- Journalling Flash File System, Version 2. 4 * Copyright © 2001-2007 Red Hat, Inc. 5 * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org> 23 #define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1)) 24 #define LOWER_BITS_RUBIN ((((long) 1)<<(RUBIN_REG_SIZE-1))-1) 51 pp->buf = buf; in init_pushpull() 52 pp->buflen = buflen; in init_pushpull() 53 pp->ofs = ofs; in init_pushpull() 54 pp->reserve = reserve; in init_pushpull() 59 if (pp->ofs >= pp->buflen - (use_reserved?0:pp->reserve)) in pushbit() [all …]
|
| /kernel/linux/linux-5.10/fs/jffs2/ |
| D | compr_rubin.c | 2 * JFFS2 -- Journalling Flash File System, Version 2. 4 * Copyright © 2001-2007 Red Hat, Inc. 5 * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org> 23 #define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1)) 24 #define LOWER_BITS_RUBIN ((((long) 1)<<(RUBIN_REG_SIZE-1))-1) 51 pp->buf = buf; in init_pushpull() 52 pp->buflen = buflen; in init_pushpull() 53 pp->ofs = ofs; in init_pushpull() 54 pp->reserve = reserve; in init_pushpull() 59 if (pp->ofs >= pp->buflen - (use_reserved?0:pp->reserve)) in pushbit() [all …]
|
| /kernel/linux/linux-6.6/arch/mips/mm/ |
| D | uasm-mips.c | 6 * A small micro-assembler. It is intentionally kept simple, does only 12 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 31 /* This macro sets the non-variable bits of an instruction. */ 40 /* This macro sets the non-variable bits of an R6 instruction. */ 51 [insn_addiu] = {M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM}, 52 [insn_addu] = {M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD}, 53 [insn_and] = {M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD}, 54 [insn_andi] = {M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM}, 55 [insn_bbit0] = {M(lwc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM}, 56 [insn_bbit1] = {M(swc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM}, [all …]
|
| /kernel/linux/linux-5.10/arch/mips/mm/ |
| D | uasm-mips.c | 6 * A small micro-assembler. It is intentionally kept simple, does only 12 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 31 /* This macro sets the non-variable bits of an instruction. */ 40 /* This macro sets the non-variable bits of an R6 instruction. */ 51 [insn_addiu] = {M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM}, 52 [insn_addu] = {M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD}, 53 [insn_and] = {M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD}, 54 [insn_andi] = {M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM}, 55 [insn_bbit0] = {M(lwc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM}, 56 [insn_bbit1] = {M(swc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM}, [all …]
|
| /kernel/linux/linux-5.10/fs/isofs/ |
| D | rock.c | 1 // SPDX-License-Identifier: GPL-2.0 45 if (rr->u.SP.magic[0] != 0xbe) in check_sp() 46 return -1; in check_sp() 47 if (rr->u.SP.magic[1] != 0xef) in check_sp() 48 return -1; in check_sp() 49 ISOFS_SB(inode->i_sb)->s_rock_offset = rr->u.SP.skip; in check_sp() 54 struct inode *inode, struct rock_state *rs) in setup_rock_ridge() argument 56 rs->len = sizeof(struct iso_directory_record) + de->name_len[0]; in setup_rock_ridge() 57 if (rs->len & 1) in setup_rock_ridge() 58 (rs->len)++; in setup_rock_ridge() [all …]
|
| /kernel/linux/linux-6.6/fs/isofs/ |
| D | rock.c | 1 // SPDX-License-Identifier: GPL-2.0 45 if (rr->u.SP.magic[0] != 0xbe) in check_sp() 46 return -1; in check_sp() 47 if (rr->u.SP.magic[1] != 0xef) in check_sp() 48 return -1; in check_sp() 49 ISOFS_SB(inode->i_sb)->s_rock_offset = rr->u.SP.skip; in check_sp() 54 struct inode *inode, struct rock_state *rs) in setup_rock_ridge() argument 56 rs->len = sizeof(struct iso_directory_record) + de->name_len[0]; in setup_rock_ridge() 57 if (rs->len & 1) in setup_rock_ridge() 58 (rs->len)++; in setup_rock_ridge() [all …]
|
| /kernel/linux/linux-5.10/arch/mips/include/asm/ |
| D | uasm.h | 8 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 200 void UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr); 201 void UASM_i_LA(u32 **buf, unsigned int rs, long addr); 211 # define UASM_i_ADDIU(buf, rs, rt, val) uasm_i_daddiu(buf, rs, rt, val) argument 212 # define UASM_i_ADDU(buf, rs, rt, rd) uasm_i_daddu(buf, rs, rt, rd) argument 213 # define UASM_i_LL(buf, rs, rt, off) uasm_i_lld(buf, rs, rt, off) argument 214 # define UASM_i_LW(buf, rs, rt, off) uasm_i_ld(buf, rs, rt, off) argument 215 # define UASM_i_LWX(buf, rs, rt, rd) uasm_i_ldx(buf, rs, rt, rd) argument 218 # define UASM_i_ROTR(buf, rs, rt, sh) uasm_i_drotr(buf, rs, rt, sh) argument 219 # define UASM_i_SC(buf, rs, rt, off) uasm_i_scd(buf, rs, rt, off) argument [all …]
|
| /kernel/linux/linux-6.6/arch/mips/include/asm/ |
| D | uasm.h | 8 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) 201 void UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr); 202 void UASM_i_LA(u32 **buf, unsigned int rs, long addr); 212 # define UASM_i_ADDIU(buf, rs, rt, val) uasm_i_daddiu(buf, rs, rt, val) argument 213 # define UASM_i_ADDU(buf, rs, rt, rd) uasm_i_daddu(buf, rs, rt, rd) argument 214 # define UASM_i_LL(buf, rs, rt, off) uasm_i_lld(buf, rs, rt, off) argument 215 # define UASM_i_LW(buf, rs, rt, off) uasm_i_ld(buf, rs, rt, off) argument 216 # define UASM_i_LWX(buf, rs, rt, rd) uasm_i_ldx(buf, rs, rt, rd) argument 219 # define UASM_i_ROTR(buf, rs, rt, sh) uasm_i_drotr(buf, rs, rt, sh) argument 220 # define UASM_i_SC(buf, rs, rt, off) uasm_i_scd(buf, rs, rt, off) argument [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | rslib.h | 1 // SPDX-License-Identifier: GPL-2.0 7 * RS code lifted from reed solomon library written by Phil Karn 18 * struct rs_codec - rs codec data 21 * @nn: Symbols per block (= (1<<mm)-1) 28 * @iprim: prim-th root of 1, index form 30 * @gffunc: Function to generate the field, if non-canonical representation 32 * @list: List entry for the rs codec list 51 * struct rs_control - rs control structure per instance 60 /* General purpose RS codec, 8-bit data width, symbol width 1-15 bit */ 62 int encode_rs8(struct rs_control *rs, uint8_t *data, int len, uint16_t *par, [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | rslib.h | 1 // SPDX-License-Identifier: GPL-2.0 7 * RS code lifted from reed solomon library written by Phil Karn 18 * struct rs_codec - rs codec data 21 * @nn: Symbols per block (= (1<<mm)-1) 28 * @iprim: prim-th root of 1, index form 30 * @gffunc: Function to generate the field, if non-canonical representation 32 * @list: List entry for the rs codec list 51 * struct rs_control - rs control structure per instance 60 /* General purpose RS codec, 8-bit data width, symbol width 1-15 bit */ 62 int encode_rs8(struct rs_control *rs, uint8_t *data, int len, uint16_t *par, [all …]
|
| /kernel/linux/linux-6.6/lib/ |
| D | ratelimit.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * ratelimit.c - Do something with rate limit. 7 * 2008-05-01 rewrite the function and use a ratelimit_state data struct as 16 * __ratelimit - rate limiting 17 * @rs: ratelimit_state data 20 * This enforces a rate limit: not more than @rs->burst callbacks 21 * in every @rs->interval 27 int ___ratelimit(struct ratelimit_state *rs, const char *func) in ___ratelimit() argument 33 int interval = READ_ONCE(rs->interval); in ___ratelimit() 34 int burst = READ_ONCE(rs->burst); in ___ratelimit() [all …]
|
| /kernel/linux/linux-5.10/lib/ |
| D | ratelimit.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * ratelimit.c - Do something with rate limit. 7 * 2008-05-01 rewrite the function and use a ratelimit_state data struct as 16 * __ratelimit - rate limiting 17 * @rs: ratelimit_state data 20 * This enforces a rate limit: not more than @rs->burst callbacks 21 * in every @rs->interval 27 int ___ratelimit(struct ratelimit_state *rs, const char *func) in ___ratelimit() argument 33 int interval = READ_ONCE(rs->interval); in ___ratelimit() 34 int burst = READ_ONCE(rs->burst); in ___ratelimit() [all …]
|
| /kernel/linux/linux-6.6/fs/xfs/scrub/ |
| D | reap.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * Copyright (C) 2022-2023 Oracle. All Rights Reserved. 122 error = xfs_rmap_alloc(sc->tp, sc->sa.agf_bp, sc->sa.pag, agbno, 1, in xreap_put_freelist() 128 error = xfs_alloc_read_agfl(sc->sa.pag, sc->tp, &agfl_bp); in xreap_put_freelist() 132 error = xfs_alloc_put_freelist(sc->sa.pag, sc->tp, sc->sa.agf_bp, in xreap_put_freelist() 136 xfs_extent_busy_insert(sc->tp, sc->sa.pag, agbno, 1, in xreap_put_freelist() 143 static inline bool xreap_dirty(const struct xreap_state *rs) in xreap_dirty() argument 145 if (rs->force_roll) in xreap_dirty() 147 if (rs->deferred) in xreap_dirty() 149 if (rs->invalidated) in xreap_dirty() [all …]
|