Searched refs:ss (Results 1 - 25 of 26) sorted by relevance

12

/u-boot/drivers/spi/
H A Dsh_qspi.c79 static void sh_qspi_init(struct sh_qspi_slave *ss) argument
83 writeb(SPCR_MSTR, &ss->regs->spcr);
86 writeb(0x00, &ss->regs->sslp);
89 writeb(SPPCR_IO3FV|SPPCR_IO2FV, &ss->regs->sppcr);
92 writeb(0x01, &ss->regs->spbr);
95 writeb(0x00, &ss->regs->spdcr);
98 writeb(0x00, &ss->regs->spckd);
101 writeb(0x00, &ss->regs->sslnd);
104 writeb(0x00, &ss->regs->spnd);
107 writew(SPCMD_INIT2, &ss
122 sh_qspi_cs_activate(struct sh_qspi_slave *ss) argument
143 sh_qspi_cs_deactivate(struct sh_qspi_slave *ss) argument
149 sh_qspi_xfer_common(struct sh_qspi_slave *ss, unsigned int bitlen, const void *dout, void *din, unsigned long flags) argument
241 struct sh_qspi_slave *ss = to_sh_qspi(slave); local
248 struct sh_qspi_slave *ss = to_sh_qspi(slave); local
256 struct sh_qspi_slave *ss; local
294 struct sh_qspi_slave *ss = to_sh_qspi(slave); local
307 struct sh_qspi_slave *ss = dev_get_plat(bus); local
326 struct sh_qspi_slave *ss = dev_get_plat(dev); local
[all...]
H A Dmxc_spi.c122 struct gpio_desc ss; member in struct:mxc_spi_slave
/u-boot/common/
H A Dusb_storage.c119 struct us_data *ss);
993 static int usb_inquiry(struct scsi_cmd *srb, struct us_data *ss) argument
1003 srb->cmdlen = ss->cmd12 ? 12 : 6;
1004 i = ss->transport(srb, ss);
1017 static int usb_request_sense(struct scsi_cmd *srb, struct us_data *ss) argument
1028 srb->cmdlen = ss->cmd12 ? 12 : 6;
1029 ss->transport(srb, ss);
1037 static int usb_test_unit_ready(struct scsi_cmd *srb, struct us_data *ss) argument
1068 usb_read_capacity(struct scsi_cmd *srb, struct us_data *ss) argument
1086 usb_read_10(struct scsi_cmd *srb, struct us_data *ss, unsigned long start, unsigned short blocks) argument
1103 usb_write_10(struct scsi_cmd *srb, struct us_data *ss, unsigned long start, unsigned short blocks) argument
1156 struct us_data *ss; local
1239 struct us_data *ss; local
1316 usb_storage_probe(struct usb_device *dev, unsigned int ifnum, struct us_data *ss) argument
1443 usb_stor_get_info(struct usb_device *dev, struct us_data *ss, struct blk_desc *dev_desc) argument
[all...]
/u-boot/board/ronetix/pm9263/
H A Dpm9263.c113 char *ss; local
119 ss = "(PSRAM)";
123 ss = "(Internal SRAM)";
127 ss = "";
130 printf("Video memory : 0x%08lX %s\n", gd->fb_base, ss );
/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_sys.h39 const uint32_t *ss = s; local
42 *(dd++) = *(ss++);
54 const uint32_t *ss = (const uint32_t *)s; local
62 *(dd++) = ss[1];
63 *(dd++) = ss[0];
64 ss += 2;
66 *(dd++) = *(ss++);
67 *(dd++) = *(ss++);
74 const uint32_t *ss = s; local
79 dd[1] = *(ss
[all...]
/u-boot/net/
H A Dcdp.c239 const ushort *ss; local
278 ss = (const ushort *)pkt;
279 type = ntohs(ss[0]);
280 tlen = ntohs(ss[1]);
287 ss += 2; /* point ss to the data of the TLV */
304 nvlan = *ss;
307 t = (const uchar *)ss;
312 ss = (const ushort *)(t + 1);
316 vlan = *ss;
[all...]
/u-boot/arch/arm/mach-imx/
H A Dspl_imx_romapi.c138 struct stream_state *ss = load->priv; local
143 if (end > ss->end) {
144 bytes = end - ss->end;
145 bytes += ss->pagesize - 1;
146 bytes /= ss->pagesize;
147 bytes *= ss->pagesize;
150 ret = rom_api_download_image(ss->end, 0, bytes);
157 ss->end += bytes;
330 struct stream_state ss; local
332 ss
[all...]
/u-boot/arch/x86/cpu/
H A Dwakeup.S46 mov %ax, %ss
59 movw %ax, %ss
H A Dsipi_vector.S91 movw %ax, %ss
H A Dstart.S85 movw %ax, %ss
/u-boot/drivers/phy/qcom/
H A DMakefile7 obj-$(CONFIG_PHY_QCOM_USB_SS) += phy-qcom-usb-ss.o
/u-boot/lib/bzip2/
H A Dbzlib_blocksort.c800 Int32 i, j, k, ss, sb; local
914 mainQSort3 to sort the small buckets [ss, j], but
917 ss = runningOrder[i];
921 Complete the big bucket [ss] by quicksorting
922 any unsorted small buckets [ss, j], for j != ss.
924 completed many of the small buckets [ss, j], so
928 if (j != ss) {
929 sb = (ss << 8) + j;
937 ss,
[all...]
/u-boot/arch/x86/lib/
H A Dbios_asm.S62 mov %ax, %ss
78 mov %ax, %ss
125 mov %ax, %ss
249 movw %ss, %cs:__realmode_ss
284 movw %cs:__realmode_ss, %ss
/u-boot/scripts/dtc/
H A Dutil.c106 const char *ss, *se; local
119 ss = s;
124 if (*s != '\0' || s == ss)
/u-boot/drivers/usb/eth/
H A Dasix.c587 struct ueth_data *ss = &priv->ueth; local
591 ret = usb_ether_register(dev, ss, AX_RX_URB_SIZE);
595 ret = asix_basic_reset(ss);
600 ret = asix_read_mac_common(ss, priv, pdata->enetaddr);
608 return usb_ether_deregister(ss);
/u-boot/lib/zstd/common/
H A Dcpu.h154 D(ss, 27)
/u-boot/lib/zlib/
H A Ddeflate.c967 deflate_state *ss;
974 ss = source->state;
981 zmemcpy(ds, ss, sizeof(deflate_state));
995 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
996 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
997 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
998 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
1000 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
/u-boot/cmd/
H A Dfdt.c903 const char *ss, *se; local
916 ss = s;
921 if (*s != '\0' || s == ss)
/u-boot/drivers/usb/gadget/
H A Df_fastboot.c167 struct usb_endpoint_descriptor *ss)
170 return ss;
165 fb_ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *fs, struct usb_endpoint_descriptor *hs, struct usb_endpoint_descriptor *ss) argument
H A Dcomposite.c306 int ss = 0; local
310 ss = 1;
320 if (ss) {
/u-boot/drivers/bios_emulator/include/
H A Dbiosemu.h264 ss - SS segment register
272 u16 ss; member in struct:__anon647
/u-boot/arch/arm/include/asm/arch-imx9/
H A Dclock.h133 struct ana_pll_reg_elem ss; /* Spread spectrum */ member in struct:ana_pll_reg
/u-boot/drivers/bios_emulator/x86emu/
H A Ddecode.c255 ss segment override
257 ds/ss select (in absense of override)
269 case SYSMODE_SEG_DS_SS: /* non-overridden, use ss register */
791 int ss = (sib >> 6) & 0x03; local
852 offset += decode_sib_si(ss, index);
868 NOTE: The code which specifies the corresponding segment (ds vs ss)
/u-boot/tools/
H A Dfdtgrep.c158 const char *ss, *se; local
171 ss = s;
176 if (*s != '\0' || s == ss)
/u-boot/include/
H A Dusb.h599 } __attribute__ ((packed)) ss; member in union:usb_hub_descriptor::__anon18

Completed in 147 milliseconds

12