HomeSort by relevance Sort by last modified time
    Searched refs:nvs (Results 1 - 18 of 18) sorted by null

  /external/syslinux/gpxe/src/drivers/nvs/
nvs.c 25 #include <gpxe/nvs.h>
36 * @v nvs NVS device
42 int nvs_read ( struct nvs_device *nvs, unsigned int address,
50 assert ( ( len & ( ( 1 << nvs->word_len_log2 ) - 1 ) ) == 0 );
55 frag_len = ( ( nvs->block_size -
56 ( address & ( nvs->block_size - 1 ) ) )
57 << nvs->word_len_log2 );
64 if ( ( rc = nvs->read ( nvs, address, data, frag_len ) ) != 0
    [all...]
threewire.c 36 * @v nvs NVS device
42 int threewire_read ( struct nvs_device *nvs, unsigned int address,
44 struct spi_device *device = nvs_to_spi ( nvs );
66 * @v nvs NVS device
72 int threewire_write ( struct nvs_device *nvs, unsigned int address,
74 struct spi_device *device = nvs_to_spi ( nvs );
115 struct nvs_device *nvs = &device->nvs; local
    [all...]
spi.c 78 * @v nvs NVS device
84 int spi_read ( struct nvs_device *nvs, unsigned int address,
86 struct spi_device *device = nvs_to_spi ( nvs );
105 * @v nvs NVS device
111 int spi_write ( struct nvs_device *nvs, unsigned int address,
113 struct spi_device *device = nvs_to_spi ( nvs );
  /external/syslinux/gpxe/src/include/gpxe/
nvs.h 39 * @v nvs NVS device
47 int ( * read ) ( struct nvs_device *nvs, unsigned int address,
51 * @v nvs NVS device
59 int ( * write ) ( struct nvs_device *nvs, unsigned int address,
63 extern int nvs_read ( struct nvs_device *nvs, unsigned int address,
65 extern int nvs_write ( struct nvs_device *nvs, unsigned int address,
spi.h 12 #include <gpxe/nvs.h>
87 /** NVS device */
88 struct nvs_device nvs; member in struct:spi_device
116 nvs_to_spi ( struct nvs_device *nvs ) {
117 return container_of ( nvs, struct spi_device, nvs );
201 extern int spi_read ( struct nvs_device *nvs, unsigned int address,
203 extern int spi_write ( struct nvs_device *nvs, unsigned int address,
213 device->nvs.word_len_log2 = 0;
215 device->nvs.read = spi_read
    [all...]
threewire.h 44 extern int threewire_read ( struct nvs_device *nvs, unsigned int address,
46 extern int threewire_write ( struct nvs_device *nvs, unsigned int address,
57 device->nvs.word_len_log2 = ( ( organisation == 8 ) ? 0 : 1 );
58 device->nvs.block_size = 1;
60 device->nvs.read = threewire_read;
61 device->nvs.write = threewire_write;
72 device->nvs.size = ( 1024 / organisation );
85 device->nvs.size = ( 2048 / organisation );
98 device->nvs.size = ( 4096 / organisation );
nvo.h 23 /** Starting address of fragment within NVS device */
36 struct nvs_device *nvs; member in struct:nvo_block
50 extern void nvo_init ( struct nvo_block *nvo, struct nvs_device *nvs,
  /external/syslinux/gpxe/src/core/
nvo.c 26 #include <gpxe/nvs.h>
65 if ( ( rc = nvs_read ( nvo->nvs, frag->address, data,
95 if ( ( rc = nvs_write ( nvo->nvs, frag->address, data,
162 /* Save updated options to NVS */
199 * @v nvs Underlying non-volatile storage device
203 void nvo_init ( struct nvo_block *nvo, struct nvs_device *nvs,
205 nvo->nvs = nvs;
226 /* Allocate memory for options and read in from NVS */
  /external/syslinux/gpxe/src/drivers/net/
3c90x.c 58 #include <gpxe/nvs.h>
131 * a3c90x_internal_ReadEeprom - nvs routine to read eeprom data
132 * We only support reading one word(2 byte). The nvs subsystem will make sure
135 * @v nvs nvs data.
141 a3c90x_internal_ReadEeprom(struct nvs_device *nvs, unsigned int address, void *data, size_t len)
145 container_of(nvs, struct INF_3C90X, nvs);
170 * a3c90x_internal_WriteEeprom - nvs routine to write eeprom data
173 * @v nvs nvs data
    [all...]
3c90x.h 299 struct nvs_device nvs; member in struct:INF_3C90X
natsemi.c 160 np->nvo.nvs = &np->eeprom.nvs;
198 nvs_read ( &np->eeprom.nvs, EE_MAC-1, prev_bytes, 1 );
199 nvs_read ( &np->eeprom.nvs, EE_MAC, ll_addr_encoded, ETH_ALEN );
201 /* decoding the MAC address read from NVS
rtl8139.c 296 nvo_init ( &rtl->nvo, &rtl->eeprom.nvs, rtl_nvo_fragments,
528 nvs_read ( &rtl->eeprom.nvs, EE_MAC, netdev->hw_addr, ETH_ALEN );
538 if ( rtl->nvo.nvs ) {
564 if ( rtl->nvo.nvs )
etherfabric.c 3290 struct nvs_device *nvs = &efab->spi->nvs; local
    [all...]
eepro100.c 114 #include <gpxe/nvs.h>
206 nvs_read ( &priv->eeprom.nvs, EEPROM_ADDR_MAC_0, netdev->hw_addr,
209 nvs_read ( &priv->eeprom.nvs, EEPROM_ADDR_MDIO_REGISTER,
    [all...]
  /external/syslinux/gpxe/src/drivers/net/rtl818x/
rtl818x.c 745 nvs_read(&priv->eeprom.nvs, 0x06, &eeprom_val, 2);
772 nvs_read(&priv->eeprom.nvs, 0x17, &eeprom_val, 2);
775 nvs_read(&priv->eeprom.nvs, 0xD, &priv->anaparam, 4);
776 nvs_read(&priv->eeprom.nvs, 0x19, &priv->rfparam, 2);
782 nvs_read(&priv->eeprom.nvs, 0x7, hwinfo->hwaddr, 6);
787 nvs_read(&priv->eeprom.nvs, 0x10 + (i >> 1), &txpwr, 2);
796 nvs_read(&priv->eeprom.nvs, 0x20 + (i >> 1), &txpwr, 2);
  /external/syslinux/gpxe/src/
Makefile 66 SRCDIRS += drivers/nvs
  /external/webrtc/talk/media/testdata/
voice.rtpdump 10 ??pj?tqvujjkjppnulkmo~z|?zmgghikpmcaek}??kmv??w}????}??????????vy???|x{???~??????}??????mhgcqinwyt~?rd_u??~fblrpmp???~x???????????v????ij??i_gz?obbq????????o{urr???9j?4????pj{}?qiip????pw??????~s????mabqhkgeeiuuz~xx?????x?~?????ton???}|bgm????????????????yvjiejuznej???x?????~??vlko??noebeijkhs~xsw?????????y????{???nnhw?jal~??????????9k?4?J??pj?}????oahvwlk}????no???s_hr~nmo?tspy??}??yv?vjk}??rwoiw????llo???t?????????????qlm}????w???{la_coac`fo????|u????????????zt}}o~???sligmqf`^jkukn??????????????????9l?4???pjnxx???????????uzhilypuhcelvmjklt???????ry?ypnn???l`w????y???uz????}??ye^mu??lhq???tx??nqmoryp|??|w???vn????????wl{??leekx?mlkzwg[cp??k_l??{ge???????????????????9m?4????pj????v???????ypxw???}os{qfnutig^_gj{mwsou}???zlo???nx???vst??xnz????wisz?|r~??ok????||????????????????????}?~?y???xsr~?pk^ahojkhxzne_kokdn~????|???nmlfrw?nqm????(?9n?4?*??pj????????vy?lht|~o}?????????????xbg????o|~???zmmv?xmcm???kn????v?????skejjlmhhhdip??pjm??yhsr?piclx???q?}?uot|?rl|???????????????????????????|?xf_aitvog`cgj|??uv??;?9o?4???pj????}?{??????zjey???thmqtpzlttely???qortv???mhjjrqkdbhn?}xnv???????wu?????????u???wk?????iht|klz??wbf???vy???t??}zmltjhbgm????lm??tk`nt?jilw?????zvw?????????kiq??N?9p?4?j??pj???????~?|}nvs????yw?????????|s???orovojgim?|vjhkiynho}?odeu??{p???}?}???????????ulk???i`r?????????igkx{{sjkmptuifs?xxh????????????yu????qmy???w|woptojr??y`ccqo??c?9q?4?
    [all...]
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/
jackson-databind-2.6.6.jar 

Completed in 729 milliseconds