Searched refs:limit (Results 1 - 4 of 4) sorted by relevance

/broadcom-cfe-1.4.2/cfe/pci/
H A Dpci_subr.c583 uint32_t base, limit; local
649 limit = PPB_IO_LIMIT(rval);
650 if (base != 0 || limit != 0) {
653 if ((base & 0xf) != 0 || (limit & 0xf) != 0) {
655 limit = ((limit & 0xf0) << 8) | 0xfff;
658 limit |= PPB_LIMIT(rval) << 16;
659 printf(" base: 0x%08x, limit: 0x%08x\n", base, limit);
662 limit
[all...]
H A Dpciconf.c130 pcireg_t limit; member in struct:pcirange
199 and limit registers for its secondary bus correctly. To compensate,
206 starting at the limit address + 1 are unused.
207 - derive values assigned to the mem and io limit registers from
366 avoid a chip erratum, we must limit this for double-hosted
872 if (address < pciioaddr.next || address + size > pciioaddr.limit)
947 /* if any io on bus, expand to valid bridge limit */
992 if (address < pcimemaddr.next || address + size > pcimemaddr.limit)
1211 /* SB-1250 pass 1 workaround: limit is next free, not last used */
1269 return 32; /* no limit */
[all...]
/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/sibyte/src/
H A Ddev_sb1250_pcihost.c91 uint32_t limit; member in struct:sb1250_host_s
108 softc->limit = 0;
138 softc->limit = phys_read32(desc_addr + 4);
155 if (boffset >= softc->limit) {
157 softc->offset = softc->limit;
168 if (blen > softc->limit - boffset)
169 blen = softc->limit - boffset;
192 return softc->pci_base != 0 && softc->offset < softc->limit;
/broadcom-cfe-1.4.2/cfe/zlib/
H A Ddeflate.c736 IPos limit = s->strstart > (IPos)MAX_DIST(s) ? local
738 /* Stop when cur_match becomes <= limit. To simplify the code,
857 } while ((cur_match = prev[cur_match & wmask]) > limit
972 /* Deal with !@#$% 64K limit: */

Completed in 103 milliseconds