Searched refs:fsi (Results 1 - 25 of 34) sorted by path

12

/linux-master/arch/s390/include/asm/
H A Dfault.h12 unsigned long fsi : 2; /* Access Exception Fetch/Store Indication */ member in struct:teid::__anon46
/linux-master/arch/s390/kvm/
H A Dgaccess.c531 teid->fsi = mode == GACC_STORE ? TEID_FSI_STORE : TEID_FSI_FETCH;
/linux-master/arch/s390/mm/
H A Dfault.c103 return teid.fsi == TEID_FSI_STORE;
/linux-master/drivers/
H A DMakefile186 obj-$(CONFIG_FSI) += fsi/
/linux-master/drivers/base/regmap/
H A DMakefile24 obj-$(CONFIG_REGMAP_FSI) += regmap-fsi.o
H A Dregmap-fsi.c9 #include <linux/fsi.h>
/linux-master/drivers/fsi/
H A DMakefile3 obj-$(CONFIG_FSI) += fsi-core.o
4 obj-$(CONFIG_FSI_MASTER_HUB) += fsi-master-hub.o
5 obj-$(CONFIG_FSI_MASTER_ASPEED) += fsi-master-aspeed.o
6 obj-$(CONFIG_FSI_MASTER_GPIO) += fsi-master-gpio.o
7 obj-$(CONFIG_FSI_MASTER_I2CR) += fsi-master-i2cr.o
8 obj-$(CONFIG_FSI_MASTER_AST_CF) += fsi-master-ast-cf.o
9 obj-$(CONFIG_FSI_SCOM) += fsi-scom.o
10 obj-$(CONFIG_FSI_SBEFIFO) += fsi-sbefifo.o
11 obj-$(CONFIG_FSI_OCC) += fsi-occ.o
H A Dfsi-core.c15 #include <linux/fsi.h>
27 #include "fsi-master.h"
28 #include "fsi-slave.h"
31 #include <trace/events/fsi.h>
870 return kasprintf(GFP_KERNEL, "fsi/cfam%d", slave->cdev_idx);
886 return kasprintf(GFP_KERNEL, "fsi/%s", dev_name(dev));
893 .name = "fsi-cdev",
1011 dev_dbg(&master->dev, "fsi: found chip %08x at %02x:%02x:%02x\n",
1302 .name = "fsi-master",
1325 dev_set_name(&master->dev, "fsi
[all...]
H A Dfsi-master-aspeed.c7 #include <linux/fsi.h>
19 #include "fsi-master.h"
499 routing_gpio = devm_gpiod_get_optional(dev, "fsi-routing",
506 mux_gpio = devm_gpiod_get_optional(dev, "fsi-mux", GPIOD_ASIS);
660 { .compatible = "aspeed,ast2600-fsi-master" },
667 .name = "fsi-master-aspeed",
H A Dfsi-master-ast-cf.c10 #include <linux/fsi.h>
25 #include "fsi-master.h"
26 #include "cf-fsi-fw.h"
28 #define FW_FILE_NAME "cf-fsi-fw.bin"
1232 master->is_ast2500 = of_device_is_compatible(mnode, "aspeed,ast2500-cf-fsi-master");
1427 { .compatible = "aspeed,ast2400-cf-fsi-master" },
1428 { .compatible = "aspeed,ast2500-cf-fsi-master" },
1435 .name = "fsi-master-acf",
H A Dfsi-master-gpio.c9 #include <linux/fsi.h>
18 #include "fsi-master.h"
882 { .compatible = "fsi-master-gpio" },
889 .name = "fsi-master-gpio",
H A Dfsi-master-hub.c9 #include <linux/fsi.h>
14 #include "fsi-master.h"
28 * The hub is controlled by a set of control registers exposed as a regular fsi
33 * bus entirely through the fsi device address range, and so have a smaller
290 .name = "fsi-master-hub",
H A Dfsi-master-i2cr.c5 #include <linux/fsi.h>
11 #include "fsi-master-i2cr.h"
298 { .compatible = "ibm,i2cr-fsi-master" },
307 .name = "fsi-master-i2cr",
H A Dfsi-occ.c7 #include <linux/fsi-sbefifo.h>
16 #include <linux/fsi-occ.h>
H A Dfsi-sbefifo.c18 #include <linux/fsi.h>
19 #include <linux/fsi-sbefifo.h>
35 #include <uapi/linux/fsi.h>
H A Dfsi-scom.c8 #include <linux/fsi.h>
18 #include <uapi/linux/fsi.h>
H A Di2cr-scom.c7 #include <linux/fsi.h>
11 #include "fsi-master-i2cr.h"
12 #include "fsi-slave.h"
/linux-master/drivers/hwmon/occ/
H A Dp8_i2c.c6 #include <linux/fsi-occ.h>
H A Dp9_sbe.c7 #include <linux/fsi-occ.h>
/linux-master/drivers/i2c/busses/
H A DMakefile157 obj-$(CONFIG_I2C_FSI) += i2c-fsi.o
H A Di2c-fsi.c18 #include <linux/fsi.h>
149 struct fsi_device *fsi; member in struct:fsi_i2c_master
163 static int fsi_i2c_read_reg(struct fsi_device *fsi, unsigned int reg, argument
169 rc = fsi_device_read(fsi, reg, &data_be, sizeof(data_be));
178 static int fsi_i2c_write_reg(struct fsi_device *fsi, unsigned int reg, argument
183 return fsi_device_write(fsi, reg, &data_be, sizeof(data_be));
193 rc = fsi_i2c_write_reg(i2c->fsi, I2C_FSI_INT_MASK, &interrupt);
198 rc = fsi_i2c_write_reg(i2c->fsi, I2C_FSI_MODE, &mode);
202 rc = fsi_i2c_read_reg(i2c->fsi, I2C_FSI_ESTAT, &extended_status);
211 return fsi_i2c_write_reg(i2c->fsi, I2C_FSI_WATER_MAR
217 struct fsi_device *fsi = port->master->fsi; local
482 struct fsi_device *fsi = i2c->fsi; local
661 fsi_i2c_find_port_of_node(struct device_node *fsi, int port) argument
[all...]
/linux-master/drivers/spi/
H A DMakefile54 obj-$(CONFIG_SPI_FSI) += spi-fsi.o
H A Dspi-fsi.c6 #include <linux/fsi.h>
71 struct fsi_device *fsi; /* FSI2SPI CFAM engine device */ member in struct:fsi2spi
86 static int fsi_spi_check_mux(struct fsi_device *fsi, struct device *dev) argument
92 rc = fsi_slave_read(fsi->slave, FSI_MBOX_ROOT_CTRL_8, &root_ctrl_8_be,
112 rc = fsi_device_read(ctx->bridge->fsi, FSI2SPI_STATUS, &sts_be,
144 rc = fsi_device_write(bridge->fsi, FSI2SPI_CMD, &cmd_be,
153 rc = fsi_device_read(bridge->fsi, FSI2SPI_DATA0, &data_be,
160 rc = fsi_device_read(bridge->fsi, FSI2SPI_DATA1, &data_be,
191 rc = fsi_device_write(bridge->fsi, FSI2SPI_DATA0, &data_be,
197 rc = fsi_device_write(bridge->fsi, FSI2SPI_DATA
524 struct fsi_device *fsi = to_fsi_dev(dev); local
[all...]
/linux-master/drivers/tty/
H A Dpty.c727 struct pts_fs_info *fsi; local
730 fsi = tty->driver_data;
732 fsi = tty->link->driver_data;
734 if (fsi) {
735 devpts_kill_index(fsi, tty->index);
736 devpts_release(fsi);
792 struct pts_fs_info *fsi; local
807 fsi = devpts_acquire(filp);
808 if (IS_ERR(fsi)) {
809 retval = PTR_ERR(fsi);
[all...]
/linux-master/fs/debugfs/
H A Dinode.c159 struct debugfs_fs_info *fsi = sb->s_fs_info; local
161 struct debugfs_mount_opts *opts = &fsi->mount_opts;
193 struct debugfs_fs_info *fsi = sb->s_fs_info; local
196 err = debugfs_parse_options(data, &fsi->mount_opts);
208 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; local
209 struct debugfs_mount_opts *opts = &fsi->mount_opts;
269 struct debugfs_fs_info *fsi; local
272 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL);
273 sb->s_fs_info = fsi;
274 if (!fsi) {
[all...]

Completed in 431 milliseconds

12