Commit Graph

203579 Commits

Author SHA1 Message Date
agc 5f50489b1b when matching pubkeys, also return the first (pgp) uid for the key in the
resultant key listing

when using json to format keys returned from libnetpgp, also prepare for
machine-readable format ("mr") as well as human ("human"), even though
it's not yet used.
2011-08-02 05:36:45 +00:00
uebayasi 11f4f177a8 ncr53c9x was converted to use mutex(9), follow that. Fix DEBUG build too. 2011-08-02 05:17:18 +00:00
matt cd13c53f92 Clear the BTB on user->kernel entry on Loongson2 2011-08-02 05:13:21 +00:00
matt c55f1d7523 Add Loongson2 DIAG register definitions (partial) 2011-08-02 05:12:32 +00:00
uebayasi 3c7b60d1ca Include sys/simplelock.h to use simple_lock(); fix build. 2011-08-02 05:10:31 +00:00
cliff 32811a2a68 configure NOR flash partitions 2011-08-02 05:08:31 +00:00
uebayasi 34a5e45122 Define struct alpha_pci_conf_readwrite_args only once; fix build. 2011-08-02 04:45:10 +00:00
cliff 16639aa9d0 configure CFI NOR flash 2011-08-02 03:41:16 +00:00
cliff 136422be68 CFI NOR support for mips/ralink 2011-08-02 03:38:48 +00:00
cliff 779bf763e1 when unpacking CFI QRY data, byte order within a word is host order,
but order across words appears to be invariant across -el and -eb systems.
2011-08-02 03:37:25 +00:00
cliff 8956ec409a - CFI_0002_STATS no longer defined here
- add missing arg for do-nothing variant of CFI_0002_STATS_INIT()
2011-08-02 01:11:08 +00:00
matt 9117b7b37b Don't define LINK_EH_SPEC if it's already defined. 2011-08-02 00:45:36 +00:00
matt 56a76c474b Change device name of pq3cfi to cfi.
Add cfi to P2020DS
Add ddrc
2011-08-02 00:27:42 +00:00
matt 2f23bdb126 Fix tpyo. 2011-08-02 00:25:38 +00:00
matt b9dc213bc8 Add some more DDR register definitions 2011-08-02 00:23:34 +00:00
matt f2875a1c9c MPC8544 don't any onchip irqs of 20/21 2011-08-02 00:22:02 +00:00
matt 0ccf0f52df Add simple driver to count single bit ECC errors. 2011-08-02 00:21:00 +00:00
matt d84c971f21 Break up list of directories by first letter. 2011-08-01 23:19:52 +00:00
matt ebed4b3440 Add CPMBR1400 and GDIUM as kernels to be built 2011-08-01 23:18:10 +00:00
matt 0fb6e91c9f Use <sys/ for bus.h and intr.h 2011-08-01 23:01:40 +00:00
macallan 65d8c9c17f appease gcc 4.5 2011-08-01 22:42:57 +00:00
macallan cac9b89bf0 sanitize sysctl interface in order to appease gcc 4.5 2011-08-01 22:40:21 +00:00
joerg 4c8e861cc5 Remove redundant , after .balign. 2011-08-01 22:21:01 +00:00
matt 03c42f4d13 Add missing __KERNEL_RCSID 2011-08-01 17:05:16 +00:00
christos 18eab2817e PR/45200: : J. Hannken-Illjes: Scp hangs after sending:
- check for vwrite() instead of read() to avoid read() being renamed by SSP
2011-08-01 15:55:00 +00:00
tsutsui f43d5958d6 Use distrib/utils/more to shrink ramdiskbin. 2011-08-01 15:41:34 +00:00
he 7508af7127 Need to include <sys/evcnt.h> explicitly to build this on at least amiga. 2011-08-01 15:26:31 +00:00
mbalmer 631d5867a0 According to the Oxford Dictionary of Etymology, a wether is a male sheep
or ram.
2011-08-01 12:28:53 +00:00
jmcneill bd79b21e79 x86_reset: use acpi_reset instead of AcpiReset 2011-08-01 11:26:31 +00:00
jmcneill 048f3118a4 add support for reset registers in PCI config space 2011-08-01 11:25:59 +00:00
drochner 1ca3ef385b remove some bloat:
-cardbus doesn't use multiple interrupt lines like PCI, and it doesn't
 use machanisms like interrupt line register and swizzling -- no need
 to carry around dummy information, this is all dealt with by the
 bridge
 (I'm asking myself how "rbus_ppb" can work -- a bridge attached to
 cardbus just can't work like a normal PCI bridge as far as interrupts
 are concerned. I thing that should be a hardware specific driver
 because behavior is not covered by a standard.)
-cardbus always uses 3.3V -- no need for a variable to keep track
 of the voltage
2011-08-01 11:20:26 +00:00
drochner f54d17f2c0 add an experimental implementation of PCI MSIs (Message Signaled
Interrupts). Successfully tested with hdaudio and "wpi" wireless
ethernet.
notes:
-There seem to be buggy chips around which announce MSI support
 but don't correctly implement it. Thus the final word whether MSIs
 can be used should be by the driver.
-Only a single vector is supported. For multiple vectors, the IDT
 allocation code would have to be changed. (And we would possibly
 run into problems due to the limited number of vectors supported
 by the current code.)
-The code is "#if NIOAPIC > 0" because it uses the ioapic_edge
 interrupt stubs. These actually don't touch any ioapic, so this
 is somewhat a misnomer.
-MSIs can't be identified by a "pin" but only by a cpu/vector
 pair. Common intr code soesn't deal well with this yet.
-Drivers need to take care of saving/restoring MSI data in the device's
 config space on suspend/resume.
2011-08-01 11:08:03 +00:00
drochner 0ce8c54d89 if checking whether an interrupt is shared, don't compare pin numbers
if it is "-1" -- this is a hack to allow MSIs which don't have a concept
of pin numbers, and are generally not shared
(This doesn't give us sensible event names for statistics display. The
whole abstraction has more exceptions than regular cases, it should
be redesigned imho.)
2011-08-01 10:42:23 +00:00
drochner ee07511cd0 modify parsing of device names so that it can deal with names which
have numbers is it, eg "i915drm*"
2011-08-01 10:33:26 +00:00
jmcneill 6edd5ebb16 Fix AR_SREV_MERLIN_20 and AR_SREV_MERLIN_20_OR_LATER macros to match
rev 2.1 as well as 2.0, from FreeBSD. Fixes 5GHz mode on my 9280.
2011-08-01 10:21:32 +00:00
mrg 32d2ab845e fix the zx@fhc attachment. 2011-08-01 10:18:23 +00:00
taca 98fbd2eb78 Update to 2011060800.
- IPv6 address was added to D.ROOT-SERVERS.NET.
2011-08-01 10:04:27 +00:00
mrg a14d5855e1 use device_private(). thanks to jmcneill for pointing this out. 2011-08-01 08:36:39 +00:00
riz a91ba62b09 Add an -m flag to mkubootimage, for specifying an alternate magic
value.
2011-08-01 06:16:35 +00:00
pgoyette 2fa51cd836 Ooopppsss - there were some other modules here that should not have been
committed.  Remove them.
2011-08-01 03:56:23 +00:00
pgoyette 4ad33d7af6 Add new spdmem(4) module 2011-08-01 03:51:55 +00:00
pgoyette c3df63d89d Add build glue for modular spdmem(4) driver, and enable it 2011-08-01 03:51:05 +00:00
pgoyette e3bc45f1ac Modularize the spdmem(4) driver 2011-08-01 03:49:52 +00:00
christos 3edabd2e8e Don't attempt to touch special targets; make -t would create .END in every
directory.
2011-08-01 02:13:21 +00:00
matt 1a16d9577d Support using MEMSIZE 2011-07-31 23:10:58 +00:00
jmcneill 7e89c84d93 x86_reset: If the FADT defines a reset register and ACPI was active, try
to use it to reset the system before attempting any other methods
2011-07-31 22:43:01 +00:00
jmcneill 2e5784d8be add Family14h (AMD Fusion) support 2011-07-31 22:04:07 +00:00
matt e2a5604bd9 Note ralink support. 2011-07-31 20:33:05 +00:00
jakllsch 58cf20f9d6 simple_lock to mutex conversion. 2011-07-31 18:39:00 +00:00
jakllsch ffb4d47223 The Fintek base address registers implement the bottom 3 bits as read/write,
but the address decoder in the chip ignores these three bits.  Do the same.
2011-07-31 18:23:46 +00:00