| Home | Sort by: relevance | last modified time | path |
1 2
| /src/sys/dev/mii/ | |
| inbmphyreg.h | 1.9.8.3 Tue Dec 04 11:21:32 UTC 2018 martin Pull up following revision(s) (requested by msaitoh in ticket #1117): sys/dev/pci/if_wmreg.h: revision 1.109 sys/dev/pci/if_wm.c: revision 1.597 sys/dev/pci/if_wm.c: revision 1.598 sys/dev/mii/inbmphyreg.h: revision 1.12 sys/dev/pci/if_wm.c: revision 1.600 sys/dev/pci/if_wm.c: revision 1.601 sys/dev/pci/if_wm.c: revision 1.602 - Add new wm_gmii_{hv,i82544}_{read,write}reg_locked() and use them in wm_gmii_{hv,i82544}_{read,write}reg(). *_locked() functions are not mii(4) API functions, so it's not required to keep the mii API. Change the PHY register type from int to uint16_t. It also change the usage of return value. It returns zero on success and non-zero on error. - Check the return value of *_locked() function and treat it. - Use *writereg_locked() function to reduce race condition in wm_init_lcd_from_nvm(). - Add comment. - Control TX/RX descriptor snooping control bits on ICH8 and newer. Only on ICH8, No-snoop bits are opposite polarity. On my Thinkpad X61, the default value of this bits are all zero, so this commit changes the snoop function enable on the machine. I tested with some other PCH machines and those bits are all zero (enable snoop by default), so this commit won't affect to some machines. - Disable relax ordering on 82546GB(Device ID 0x1099 and 0x10b5) or >= ICH8. Same as other OSes. - Add wm_oem_bits_config_ich8lan() to control LPLU and GbE setting base on the NVM's info. - Modify wm_enable_wakeup() to reduce difference against FreeBSD and Linux. This modification affects to ICH8 and newer devices. I217 Rapid Start Technology support have not written yet (it's TODO). - Add wm_k1_workaround_lv() from FreeBSD. It's PCH2 specific: Workaround to set the K1 beacon duration for 82579 parts in 10Mbps. Disable K1 for 1000 and 100 speeds. - Make wm_link_stall_workaround_hv() and move an 82578 specific code into it. Don't apply the workaround if BMCR_LOOP bit is set. Same as FreeBSD. - Add comment. Modify comment. Fix comment. No functional change. |
| /src/sys/dev/pci/ | |
| if_wmreg.h | 1.98.6.6 Tue Dec 04 11:21:32 UTC 2018 martin Pull up following revision(s) (requested by msaitoh in ticket #1117): sys/dev/pci/if_wmreg.h: revision 1.109 sys/dev/pci/if_wm.c: revision 1.597 sys/dev/pci/if_wm.c: revision 1.598 sys/dev/mii/inbmphyreg.h: revision 1.12 sys/dev/pci/if_wm.c: revision 1.600 sys/dev/pci/if_wm.c: revision 1.601 sys/dev/pci/if_wm.c: revision 1.602 - Add new wm_gmii_{hv,i82544}_{read,write}reg_locked() and use them in wm_gmii_{hv,i82544}_{read,write}reg(). *_locked() functions are not mii(4) API functions, so it's not required to keep the mii API. Change the PHY register type from int to uint16_t. It also change the usage of return value. It returns zero on success and non-zero on error. - Check the return value of *_locked() function and treat it. - Use *writereg_locked() function to reduce race condition in wm_init_lcd_from_nvm(). - Add comment. - Control TX/RX descriptor snooping control bits on ICH8 and newer. Only on ICH8, No-snoop bits are opposite polarity. On my Thinkpad X61, the default value of this bits are all zero, so this commit changes the snoop function enable on the machine. I tested with some other PCH machines and those bits are all zero (enable snoop by default), so this commit won't affect to some machines. - Disable relax ordering on 82546GB(Device ID 0x1099 and 0x10b5) or >= ICH8. Same as other OSes. - Add wm_oem_bits_config_ich8lan() to control LPLU and GbE setting base on the NVM's info. - Modify wm_enable_wakeup() to reduce difference against FreeBSD and Linux. This modification affects to ICH8 and newer devices. I217 Rapid Start Technology support have not written yet (it's TODO). - Add wm_k1_workaround_lv() from FreeBSD. It's PCH2 specific: Workaround to set the K1 beacon duration for 82579 parts in 10Mbps. Disable K1 for 1000 and 100 speeds. - Make wm_link_stall_workaround_hv() and move an 82578 specific code into it. Don't apply the workaround if BMCR_LOOP bit is set. Same as FreeBSD. - Add comment. Modify comment. Fix comment. No functional change. |
| if_wm.c | 1.598 Mon Nov 19 06:38:58 UTC 2018 msaitoh - Control TX/RX descriptor snooping control bits on ICH8 and newer. Only on ICH8, No-snoop bits are opposite polarity. On my Thinkpas X61, the default value of this bits are all zero, so this commit changes the snoop function enable on the machine. I tested with some other PCH machines and those bits are all zero (enable snoop by default), so this commit won't affect to some machines. - Disable relax ordering on 82546GB(Device ID 0x1099 and 0x10b5) or >= ICH8. Same as other OSes. 1.508.4.27 Tue Dec 04 11:21:32 UTC 2018 martin Pull up following revision(s) (requested by msaitoh in ticket #1117): sys/dev/pci/if_wmreg.h: revision 1.109 sys/dev/pci/if_wm.c: revision 1.597 sys/dev/pci/if_wm.c: revision 1.598 sys/dev/mii/inbmphyreg.h: revision 1.12 sys/dev/pci/if_wm.c: revision 1.600 sys/dev/pci/if_wm.c: revision 1.601 sys/dev/pci/if_wm.c: revision 1.602 - Add new wm_gmii_{hv,i82544}_{read,write}reg_locked() and use them in wm_gmii_{hv,i82544}_{read,write}reg(). *_locked() functions are not mii(4) API functions, so it's not required to keep the mii API. Change the PHY register type from int to uint16_t. It also change the usage of return value. It returns zero on success and non-zero on error. - Check the return value of *_locked() function and treat it. - Use *writereg_locked() function to reduce race condition in wm_init_lcd_from_nvm(). - Add comment. - Control TX/RX descriptor snooping control bits on ICH8 and newer. Only on ICH8, No-snoop bits are opposite polarity. On my Thinkpad X61, the default value of this bits are all zero, so this commit changes the snoop function enable on the machine. I tested with some other PCH machines and those bits are all zero (enable snoop by default), so this commit won't affect to some machines. - Disable relax ordering on 82546GB(Device ID 0x1099 and 0x10b5) or >= ICH8. Same as other OSes. - Add wm_oem_bits_config_ich8lan() to control LPLU and GbE setting base on the NVM's info. - Modify wm_enable_wakeup() to reduce difference against FreeBSD and Linux. This modification affects to ICH8 and newer devices. I217 Rapid Start Technology support have not written yet (it's TODO). - Add wm_k1_workaround_lv() from FreeBSD. It's PCH2 specific: Workaround to set the K1 beacon duration for 82579 parts in 10Mbps. Disable K1 for 1000 and 100 speeds. - Make wm_link_stall_workaround_hv() and move an 82578 specific code into it. Don't apply the workaround if BMCR_LOOP bit is set. Same as FreeBSD. - Add comment. Modify comment. Fix comment. No functional change. |
| pcidevs.h | 1.598 Tue Dec 09 18:58:49 UTC 2003 ad Regen. |
| pcidevs_data.h | 1.598 Wed Dec 17 09:17:07 UTC 2003 tls Add support for some more Marvell-based adapters to the sk driver: D-Link DGE-530T Linksys EG1032v2 Linksys EG1064v2 The Linux driver treats all of these the same. Tested with a DGE-530T; it works, though performance on at least one of my systems is atrocious. Fix setting of ethernet capabilities into interface capabilites word in attach routine. Manual page: note that jumbo support doesn't work and checksum support doesn't exist. |
| pcidevs | 1.598 Mon Dec 08 11:06:36 UTC 2003 scw Add an entry for Intersil's Prism-54 (ISL3890) WLAN mini-PCI card. |
| /src/sys/dev/usb/ | |
| usbdevs.h | 1.598 Thu Jan 19 14:55:21 UTC 2012 nonaka regen |
| usbdevs_data.h | 1.598 Thu Jan 19 14:01:22 UTC 2012 nonaka regen. |
| usbdevs | 1.598 Tue Oct 25 16:09:14 UTC 2011 aymeric add Sony PLAYSTATION(R)3 Controller entry |
| /src/usr.bin/xlint/lint1/ | |
| tree.c | 1.598 Tue Jan 23 20:03:42 UTC 2024 rillig lint: unconst parameters These were leftovers from earlier refactorings and are no longer needed. No binary change. |
| /src/usr.bin/make/ | |
| parse.c | 1.598 Tue Dec 28 17:45:56 UTC 2021 rillig make: remove redundant parameter from ParseDependencyTargets No functional change. |
| main.c | 1.598 Sun Sep 10 11:41:32 UTC 2023 rillig make: add more details to usage message of -j option |
| var.c | 1.598 Fri Oct 30 15:28:38 UTC 2020 rillig make(1): extract MayExport from Var_Export1 |
| /src/share/man/man4/ | |
| Makefile | 1.598 Fri Apr 26 20:08:53 UTC 2013 rkujawa Add man page for TPS65217 PMIC. |
| /src/sys/arch/amd64/conf/ | |
| GENERIC | 1.598 Sat Sep 24 11:05:17 UTC 2022 riastradh x86: Support EFI runtime services. This creates a special pmap, efi_runtime_pmap, which avoids setting PTE_U but allows mappings to lie in what would normally be user VM -- this way we don't fall afoul of SMAP/SMEP when executing EFI runtime services from CPL 0. SVS does not apply to the EFI runtime pmap. The mechanism is intended to work with either physical addressing or virtual addressing; currently the bootloader does physical addressing but in principle it could be modified to do virtual addressing instead, if it allocated virtual pages, assigned them in the memory map, and issued RT->SetVirtualAddressMap. Not sure pmap_activate_sync and pmap_deactivate_sync are correct, need more review from an x86 wizard. If this causes fallout, it can be disabled temporarily without reverting anything by just making efi_runtime_init return immediately without doing anything, or by removing options EFI_RUNTIME. amd64-only for now pending type fixes and testing on i386. |
| /src/sys/arch/i386/i386/ | |
| machdep.c | 1.598 Sun Feb 18 18:20:26 UTC 2007 dsl Get config(1) to supply the default parameters for BEEP_ON_HALT. |
| /src/sys/sys/ | |
| param.h | 1.598 Thu Jul 04 02:49:30 UTC 2019 ozaki-r Bump the version for if_description Welcome to 8.99.50 |
| /src/sys/arch/i386/conf/ | |
| GENERIC | 1.598 Thu Apr 29 11:54:24 UTC 2004 minoura Comment out ichlpcib. There are at least 2 reports that it freezes upon startup. http://mail-index.netbsd.org/current-users/2004/04/19/0016.html |
| /src/sys/conf/ | |
| files | 1.598 Mon Feb 10 15:20:04 UTC 2003 atatat Sorry. That's not for public consumption yet. |
| /src/doc/ | |
| CHANGES | 1.598 Tue Mar 21 19:01:33 UTC 2006 gdamore Mention new AR5312 port. |
| /src/distrib/sets/lists/tests/ | |
| mi | 1.598 Fri Nov 14 13:30:48 UTC 2014 uebayasi Test __start_xxx/__stop_xxx symbol generation. |
| /src/share/mk/ | |
| bsd.own.mk | 1.598 Mon Nov 30 16:13:23 UTC 2009 uebayasi Support "extsrc", externally added programs and libraries. Users can write their own reach-overs, cross-build, install, and get set files just like base and X11 / X.org. (These sets are not included as TNF releases.) |
| /src/distrib/sets/lists/base/ | |
| mi | 1.598 Mon Mar 13 11:38:30 UTC 2006 rpaulo Oops, the previous change touched the wrong files (pckbd.hu and pckb.pl). |
| /src/distrib/sets/lists/man/ | |
| mi | 1.598 Fri Aug 22 06:42:02 UTC 2003 itojun manpage for udav* |
| /src/distrib/sets/lists/comp/ | |
| mi | 1.598 Thu Jul 24 07:51:01 UTC 2003 wiz Add pthread(3). |
1 2