Searched refs:lsi (Results 1 - 40 of 40) sorted by relevance

/linux-4.4.14/arch/arm/mach-axxia/
H A Daxxia.c20 "lsi,axm5516",
21 "lsi,axm5516-sim",
22 "lsi,axm5516-emu",
H A Dplatsmp.c40 syscon_np = of_find_compatible_node(NULL, NULL, "lsi,axxia-syscon"); axxia_boot_secondary()
89 CPU_METHOD_OF_DECLARE(axxia_smp, "lsi,syscon-release", &axxia_smp_ops);
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
H A Dobd_mount.c79 struct lustre_sb_info *lsi = s2lsi(sb); lustre_process_log() local
80 struct obd_device *mgc = lsi->lsi_mgc; lustre_process_log()
121 struct lustre_sb_info *lsi = s2lsi(sb); lustre_end_log() local
122 struct obd_device *mgc = lsi->lsi_mgc; lustre_end_log()
206 struct lustre_sb_info *lsi = s2lsi(sb); lustre_start_mgc() local
217 LASSERT(lsi->lsi_lmd); lustre_start_mgc()
220 ptr = lsi->lsi_lmd->lmd_dev; lustre_start_mgc()
239 mgssec = lsi->lsi_lmd->lmd_mgssec ? lsi->lsi_lmd->lmd_mgssec : ""; lustre_start_mgc()
261 if (lmd_is_client(lsi->lsi_lmd)) { lustre_start_mgc()
264 __u32 *flags = &lsi->lsi_lmd->lmd_flags; lustre_start_mgc()
305 ptr = lsi->lsi_lmd->lmd_dev; lustre_start_mgc()
319 lsi->lsi_lmd->lmd_mgs_failnodes = 1; lustre_start_mgc()
362 lsi->lsi_lmd->lmd_mgs_failnodes = i; lustre_start_mgc()
392 if (lmd_is_client(lsi->lsi_lmd) && lustre_start_mgc()
393 lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR) lustre_start_mgc()
405 /* Keep the mgc info in the sb. Note that many lsi's can point lustre_start_mgc()
407 lsi->lsi_mgc = obd; lustre_start_mgc()
419 struct lustre_sb_info *lsi = s2lsi(sb); lustre_stop_mgc() local
424 if (!lsi) lustre_stop_mgc()
426 obd = lsi->lsi_mgc; lustre_stop_mgc()
429 lsi->lsi_mgc = NULL; lustre_stop_mgc()
473 for (i = 0; i < lsi->lsi_lmd->lmd_mgs_failnodes; i++) { lustre_stop_mgc()
493 struct lustre_sb_info *lsi; lustre_init_lsi() local
495 lsi = kzalloc(sizeof(*lsi), GFP_NOFS); lustre_init_lsi()
496 if (!lsi) lustre_init_lsi()
498 lsi->lsi_lmd = kzalloc(sizeof(*lsi->lsi_lmd), GFP_NOFS); lustre_init_lsi()
499 if (!lsi->lsi_lmd) { lustre_init_lsi()
500 kfree(lsi); lustre_init_lsi()
504 lsi->lsi_lmd->lmd_exclude_count = 0; lustre_init_lsi()
505 lsi->lsi_lmd->lmd_recovery_time_soft = 0; lustre_init_lsi()
506 lsi->lsi_lmd->lmd_recovery_time_hard = 0; lustre_init_lsi()
507 s2lsi_nocast(sb) = lsi; lustre_init_lsi()
509 atomic_set(&lsi->lsi_mounts, 1); lustre_init_lsi()
512 lsi->lsi_flags = LSI_UMOUNT_FAILOVER; lustre_init_lsi()
514 return lsi; lustre_init_lsi()
519 struct lustre_sb_info *lsi = s2lsi(sb); lustre_free_lsi() local
521 LASSERT(lsi != NULL); lustre_free_lsi()
522 CDEBUG(D_MOUNT, "Freeing lsi %p\n", lsi); lustre_free_lsi()
525 LASSERT(atomic_read(&lsi->lsi_mounts) == 0); lustre_free_lsi()
527 if (lsi->lsi_lmd != NULL) { lustre_free_lsi()
528 kfree(lsi->lsi_lmd->lmd_dev); lustre_free_lsi()
529 kfree(lsi->lsi_lmd->lmd_profile); lustre_free_lsi()
530 kfree(lsi->lsi_lmd->lmd_mgssec); lustre_free_lsi()
531 kfree(lsi->lsi_lmd->lmd_opts); lustre_free_lsi()
532 if (lsi->lsi_lmd->lmd_exclude_count) lustre_free_lsi()
533 kfree(lsi->lsi_lmd->lmd_exclude); lustre_free_lsi()
534 kfree(lsi->lsi_lmd->lmd_mgs); lustre_free_lsi()
535 kfree(lsi->lsi_lmd->lmd_osd_type); lustre_free_lsi()
536 kfree(lsi->lsi_lmd->lmd_params); lustre_free_lsi()
538 kfree(lsi->lsi_lmd); lustre_free_lsi()
541 LASSERT(lsi->lsi_llsbi == NULL); lustre_free_lsi()
542 kfree(lsi); lustre_free_lsi()
548 /* The lsi has one reference for every server that is using the disk -
552 struct lustre_sb_info *lsi = s2lsi(sb); lustre_put_lsi() local
554 LASSERT(lsi != NULL); lustre_put_lsi()
556 CDEBUG(D_MOUNT, "put %p %d\n", sb, atomic_read(&lsi->lsi_mounts)); lustre_put_lsi()
557 if (atomic_dec_and_test(&lsi->lsi_mounts)) { lustre_put_lsi()
704 struct lustre_sb_info *lsi = s2lsi(sb); lustre_check_exclusion() local
705 struct lustre_mount_data *lmd = lsi->lsi_lmd; lustre_check_exclusion()
1082 struct lustre_sb_info *lsi; lustre_fill_super() local
1087 lsi = lustre_init_lsi(sb); lustre_fill_super()
1088 if (!lsi) lustre_fill_super()
1090 lmd = lsi->lsi_lmd; lustre_fill_super()
1134 /* If error happens in fill_super() call, @lsi will be killed there. lustre_fill_super()
1178 struct lustre_sb_info *lsi = s2lsi(sb); lustre_kill_super() local
1180 if (kill_super_cb && lsi) lustre_kill_super()
/linux-4.4.14/drivers/clk/
H A Dclk-nspire.c104 CLK_OF_DECLARE(nspire_ahbdiv_cx, "lsi,nspire-cx-ahb-divider",
106 CLK_OF_DECLARE(nspire_ahbdiv_classic, "lsi,nspire-classic-ahb-divider",
151 CLK_OF_DECLARE(nspire_clk_cx, "lsi,nspire-cx-clock", nspire_clk_setup_cx);
152 CLK_OF_DECLARE(nspire_clk_classic, "lsi,nspire-classic-clock",
H A Dclk-axm5516.c21 #include <dt-bindings/clock/lsi,axm5516-clks.h>
528 { .compatible = "lsi,axm5516-clks" },
/linux-4.4.14/drivers/usb/chipidea/
H A Dci_hdrc_zevio.c55 { .compatible = "lsi,zevio-usb", },
/linux-4.4.14/drivers/message/fusion/
H A Dmptbase.h9 * (mailto:DL-MPTFusionLinux@lsi.com)
56 #include "lsi/mpi_type.h"
57 #include "lsi/mpi.h" /* Fusion MPI(nterface) basic defs */
58 #include "lsi/mpi_ioc.h" /* Fusion MPT IOC(ontroller) defs */
59 #include "lsi/mpi_cnfg.h" /* IOC configuration support */
60 #include "lsi/mpi_init.h" /* SCSI Host (initiator) protocol support */
61 #include "lsi/mpi_lan.h" /* LAN over FC protocol support */
62 #include "lsi/mpi_raid.h" /* Integrated Mirroring support */
64 #include "lsi/mpi_fc.h" /* Fibre Channel (lowlevel) support */
65 #include "lsi/mpi_targ.h" /* SCSI/FCP Target protcol support */
66 #include "lsi/mpi_tool.h" /* Tools support */
67 #include "lsi/mpi_sas.h" /* SAS support */
369 * NOTE: Use MPI_{DOORBELL,WRITESEQ,DIAG}_xxx defs in lsi/mpi.h
976 * Otherwise, use MPI_xxx defines (refer to "lsi/mpi.h" header).
H A Dmptdebug.h7 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptlan.h8 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptsas.h9 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptscsih.h9 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptctl.h9 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptscsih.c7 * (mailto:DL-MPTFusionLinux@lsi.com)
68 #include "lsi/mpi_log_sas.h"
433 * Refer to lsi/mpi.h.
H A Dmptfc.c7 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptlan.c8 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptbase.c9 * (mailto:DL-MPTFusionLinux@lsi.com)
66 #include "lsi/mpi_log_fc.h"
7811 * Refer to lsi/mpi_log_fc.h.
7855 * Refer to lsi/sp_log.h.
8067 * Refer to lsi/mpi_log_sas.h.
8149 * Refer to lsi/mpi.h.
8227 * Refer to lsi/mpi.h.
H A Dmptspi.c7 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptctl.c8 * (mailto:DL-MPTFusionLinux@lsi.com)
H A Dmptsas.c7 * (mailto:DL-MPTFusionLinux@lsi.com)
/linux-4.4.14/drivers/power/reset/
H A Daxxia-reset.c80 { .compatible = "lsi,axm55xx-reset", },
/linux-4.4.14/drivers/net/usb/
H A Dsierra_net.c352 struct lsi_umts *lsi = (struct lsi_umts *)data; sierra_net_parse_lsi() local
361 if (lsi->length != cpu_to_be16(SIERRA_NET_LSI_UMTS_STATUS_LEN)) { sierra_net_parse_lsi()
363 __func__, be16_to_cpu(lsi->length), sierra_net_parse_lsi()
369 if (lsi->protocol != SIERRA_NET_PROTOCOL_UMTS) { sierra_net_parse_lsi()
371 lsi->protocol); sierra_net_parse_lsi()
376 if (lsi->link_type != SIERRA_NET_AS_LINK_TYPE_IPv4) { sierra_net_parse_lsi()
378 lsi->link_type); sierra_net_parse_lsi()
383 if (lsi->coverage == SIERRA_NET_COVERAGE_NONE sierra_net_parse_lsi()
384 || lsi->coverage == SIERRA_NET_COVERAGE_NOPACKET) { sierra_net_parse_lsi()
385 netdev_err(dev->net, "No coverage, 0x%02x\n", lsi->coverage); sierra_net_parse_lsi()
390 if (lsi->session_state == SIERRA_NET_SESSION_IDLE) { sierra_net_parse_lsi()
392 lsi->session_state); sierra_net_parse_lsi()
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
H A Dllite_lib.c852 struct lustre_sb_info *lsi = s2lsi(sb); ll_fill_super() local
868 lsi->lsi_llsbi = sbi = ll_init_sbi(sb); ll_fill_super()
875 err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags); ll_fill_super()
879 err = bdi_init(&lsi->lsi_bdi); ll_fill_super()
882 lsi->lsi_flags |= LSI_BDI_INITIALIZED; ll_fill_super()
883 lsi->lsi_bdi.capabilities = 0; ll_fill_super()
884 err = ll_bdi_register(&lsi->lsi_bdi); ll_fill_super()
888 sb->s_bdi = &lsi->lsi_bdi; ll_fill_super()
896 cfg->cfg_uuid = lsi->lsi_llsbi->ll_sb_uuid; ll_fill_super()
947 struct lustre_sb_info *lsi = s2lsi(sb); ll_put_super() local
991 if (lsi->lsi_flags & LSI_BDI_INITIALIZED) { ll_put_super()
992 bdi_destroy(&lsi->lsi_bdi); ll_put_super()
993 lsi->lsi_flags &= ~LSI_BDI_INITIALIZED; ll_put_super()
997 lsi->lsi_llsbi = NULL; ll_put_super()
2239 struct lustre_sb_info *lsi = s2lsi(sb); ll_get_fsname() local
2251 len = strlen(lsi->lsi_lmd->lmd_profile); ll_get_fsname()
2252 ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-'); ll_get_fsname()
2258 strncpy(buf, lsi->lsi_lmd->lmd_profile, len); ll_get_fsname()
H A Dlproc_llite.c960 struct lustre_sb_info *lsi = s2lsi(sb); ldebugfs_register_mountpoint() local
974 len = strlen(lsi->lsi_lmd->lmd_profile); ldebugfs_register_mountpoint()
975 ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-'); ldebugfs_register_mountpoint()
981 lsi->lsi_lmd->lmd_profile, sb); ldebugfs_register_mountpoint()
H A Ddir.c692 struct lustre_sb_info *lsi = s2lsi(inode->i_sb); ll_dir_setstripe() local
693 struct obd_device *mgc = lsi->lsi_mgc; ll_dir_setstripe()
/linux-4.4.14/drivers/scsi/
H A D3w-sas.h4 Written By: Adam Radford <linuxraid@lsi.com>
42 linuxraid@lsi.com
45 http://www.lsi.com
H A D3w-xxxx.h4 Written By: Adam Radford <linuxraid@lsi.com>
48 linuxraid@lsi.com
51 http://www.lsi.com
H A D3w-9xxx.h4 Written By: Adam Radford <linuxraid@lsi.com>
5 Modifications By: Tom Couch <linuxraid@lsi.com>
44 linuxraid@lsi.com
47 http://www.lsi.com
H A D3w-9xxx.c4 Written By: Adam Radford <linuxraid@lsi.com>
5 Modifications By: Tom Couch <linuxraid@lsi.com>
44 linuxraid@lsi.com
47 http://www.lsi.com
H A D3w-sas.c4 Written By: Adam Radford <linuxraid@lsi.com>
46 linuxraid@lsi.com
49 http://www.lsi.com
H A D3w-xxxx.c4 Written By: Adam Radford <linuxraid@lsi.com>
50 linuxraid@lsi.com
53 http://www.lsi.com
/linux-4.4.14/drivers/irqchip/
H A Dirq-zevio.c125 IRQCHIP_DECLARE(zevio_irq, "lsi,zevio-intc", zevio_of_init);
/linux-4.4.14/drivers/clocksource/
H A Dzevio-timer.c218 CLOCKSOURCE_OF_DECLARE(zevio_timer, "lsi,zevio-timer", zevio_timer_init);
/linux-4.4.14/drivers/gpio/
H A Dgpio-zevio.c217 { .compatible = "lsi,zevio-gpio", },
/linux-4.4.14/arch/alpha/kernel/
H A Dsys_marvel.c276 /* Set up the lsi irqs. */ init_io7_irqs()
347 irq += 0x80; /* offset for lsi */ marvel_map_irq()
/linux-4.4.14/drivers/watchdog/
H A Dsb_wdog.c4 * Copyright (C) 2007 OnStor, Inc. * Andrew Sharp <andy.sharp@lsi.com>
336 MODULE_AUTHOR("Andrew Sharp <andy.sharp@lsi.com>");
/linux-4.4.14/drivers/rtc/
H A Drtc-ds1511.c5 * Copyright (C) 2007 Andrew Sharp <andy.sharp@lsi.com>
537 MODULE_AUTHOR("Andrew Sharp <andy.sharp@lsi.com>");
/linux-4.4.14/drivers/i2c/busses/
H A Di2c-axxia.c582 { .compatible = "lsi,api2c", },
600 MODULE_AUTHOR("Anders Berg <anders.berg@lsi.com>");
/linux-4.4.14/drivers/staging/lustre/lustre/mgc/
H A Dmgc_request.c288 struct lustre_sb_info *lsi = s2lsi(sb); config_log_add() local
339 LASSERT(lsi->lsi_lmd); config_log_add()
340 if (!(lsi->lsi_lmd->lmd_flags & LMD_FLG_NOIR)) { config_log_add()
1451 struct lustre_sb_info *lsi = NULL; mgc_process_cfg_log() local
1467 lsi = s2lsi(cld->cld_cfg.cfg_sb); mgc_process_cfg_log()
/linux-4.4.14/drivers/scsi/megaraid/
H A Dmegaraid_mbox.c16 * Atul Mukker <Atul.Mukker@lsi.com>
17 * Sreenivas Bagalkote <Sreenivas.Bagalkote@lsi.com>
18 * Manoj Jose <Manoj.Jose@lsi.com>
142 MODULE_AUTHOR("megaraidlinux@lsi.com");
/linux-4.4.14/arch/powerpc/xmon/
H A Dppc-opc.c4332 { "lsi", X(31,597), X_MASK, PWRCOM, { RT, RA0, NB } },

Completed in 1204 milliseconds