/linux-4.4.14/arch/arm/mach-axxia/ |
H A D | axxia.c | 20 "lsi,axm5516", 21 "lsi,axm5516-sim", 22 "lsi,axm5516-emu",
|
H A D | platsmp.c | 40 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 D | obd_mount.c | 79 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 D | clk-nspire.c | 104 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 D | clk-axm5516.c | 21 #include <dt-bindings/clock/lsi,axm5516-clks.h> 528 { .compatible = "lsi,axm5516-clks" },
|
/linux-4.4.14/drivers/usb/chipidea/ |
H A D | ci_hdrc_zevio.c | 55 { .compatible = "lsi,zevio-usb", },
|
/linux-4.4.14/drivers/message/fusion/ |
H A D | mptbase.h | 9 * (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 D | mptdebug.h | 7 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptlan.h | 8 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptsas.h | 9 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptscsih.h | 9 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptctl.h | 9 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptscsih.c | 7 * (mailto:DL-MPTFusionLinux@lsi.com) 68 #include "lsi/mpi_log_sas.h" 433 * Refer to lsi/mpi.h.
|
H A D | mptfc.c | 7 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptlan.c | 8 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptbase.c | 9 * (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 D | mptspi.c | 7 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptctl.c | 8 * (mailto:DL-MPTFusionLinux@lsi.com)
|
H A D | mptsas.c | 7 * (mailto:DL-MPTFusionLinux@lsi.com)
|
/linux-4.4.14/drivers/power/reset/ |
H A D | axxia-reset.c | 80 { .compatible = "lsi,axm55xx-reset", },
|
/linux-4.4.14/drivers/net/usb/ |
H A D | sierra_net.c | 352 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 D | llite_lib.c | 852 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 D | lproc_llite.c | 960 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 D | dir.c | 692 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 D | 3w-sas.h | 4 Written By: Adam Radford <linuxraid@lsi.com> 42 linuxraid@lsi.com 45 http://www.lsi.com
|
H A D | 3w-xxxx.h | 4 Written By: Adam Radford <linuxraid@lsi.com> 48 linuxraid@lsi.com 51 http://www.lsi.com
|
H A D | 3w-9xxx.h | 4 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 D | 3w-9xxx.c | 4 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 D | 3w-sas.c | 4 Written By: Adam Radford <linuxraid@lsi.com> 46 linuxraid@lsi.com 49 http://www.lsi.com
|
H A D | 3w-xxxx.c | 4 Written By: Adam Radford <linuxraid@lsi.com> 50 linuxraid@lsi.com 53 http://www.lsi.com
|
/linux-4.4.14/drivers/irqchip/ |
H A D | irq-zevio.c | 125 IRQCHIP_DECLARE(zevio_irq, "lsi,zevio-intc", zevio_of_init);
|
/linux-4.4.14/drivers/clocksource/ |
H A D | zevio-timer.c | 218 CLOCKSOURCE_OF_DECLARE(zevio_timer, "lsi,zevio-timer", zevio_timer_init);
|
/linux-4.4.14/drivers/gpio/ |
H A D | gpio-zevio.c | 217 { .compatible = "lsi,zevio-gpio", },
|
/linux-4.4.14/arch/alpha/kernel/ |
H A D | sys_marvel.c | 276 /* 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 D | sb_wdog.c | 4 * 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 D | rtc-ds1511.c | 5 * 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 D | i2c-axxia.c | 582 { .compatible = "lsi,api2c", }, 600 MODULE_AUTHOR("Anders Berg <anders.berg@lsi.com>");
|
/linux-4.4.14/drivers/staging/lustre/lustre/mgc/ |
H A D | mgc_request.c | 288 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 D | megaraid_mbox.c | 16 * 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 D | ppc-opc.c | 4332 { "lsi", X(31,597), X_MASK, PWRCOM, { RT, RA0, NB } },
|