Commit Graph

232439 Commits

Author SHA1 Message Date
jmcneill
bf33f1be32 Add support for setting RK3188/RK3188+ CPU frequency. If the SoC ID is
passed in bootargs matching RK3188 or RK3188+, and the cpu.frequency
option specifies a supported rate (currently 600, 1008, 1608 MHz), the
APLL clock will be adjusted accordingly.
2014-12-30 03:53:52 +00:00
uebayasi
c4f304668a Add entries, sort, etc. 2014-12-30 03:52:03 +00:00
christos
75320acf84 call disk_ioctl. 2014-12-30 02:21:10 +00:00
mrg
9dd3b8ae69 add a decode_uint() function. 2014-12-30 01:22:09 +00:00
jmcneill
bb44b037e5 build fix 2014-12-30 00:19:50 +00:00
jmcneill
f8d18e3dd3 - Set DWC_MMC_F_FORCE_CLK
- Force max sdmmc clk to 24MHz
- Update for simpler dwcmmc clock setup
2014-12-29 23:59:52 +00:00
jmcneill
7ffab44e1e - Simplify clock setup
- Add DWC_MMC_F_FORCE_CLK flag, which forces updating clock for each
  command (apparently required by Rockchip)
- Let bus glue limit the max clk speed used
2014-12-29 23:58:25 +00:00
skrll
3ca8763071 Fixup USB Phy initialisation for Exynos5410.
odroid-xu now detects USB devices.
2014-12-29 22:58:59 +00:00
skrll
6ca4ffb177 Trailing whitespace. 2014-12-29 22:34:08 +00:00
justin
e42c569056 Just abort on currently unsupported functions. 2014-12-29 21:50:09 +00:00
martin
719bfa7d23 Skip rounding mode tests on ARM FPUs that do not allow configuration of them. 2014-12-29 19:51:53 +00:00
wiz
e9d482784b Use more markup. Bump date for previous. 2014-12-29 19:20:22 +00:00
martin
f5c779f5d9 Fix exception status vs mask confusion, of course feenableexcept(),
fedisableexcept() and fegetexcept() all operate on the mask.
2014-12-29 19:11:13 +00:00
mlelstv
0a0ac6a239 document missing disk_set_info function that maintains the device's
"disk-info" dictionary.
2014-12-29 19:07:03 +00:00
mlelstv
c4ffe4b64c clear error for new ioctls. 2014-12-29 18:54:19 +00:00
mlelstv
78d420c356 Implement DIOCGMEDIASIZE and DIOCGSECTORSIZE from FreeBSD. 2014-12-29 18:41:20 +00:00
martin
ffed0c5e5a Include <ieeefp.h> even for the <fenv.h> case since we use fpsetmask()
to detect ARM Cortex NEON fpus.
2014-12-29 18:36:27 +00:00
mlelstv
ddeda108d6 use disk_ioctl to provide DIOCGDISKINFO. 2014-12-29 18:23:57 +00:00
maxv
8dfa44bc87 Small cleanup:
- KNF
 - malloc + memset -> malloc(|M_ZERO)
 - no need to check data == NULL
2014-12-29 17:17:54 +00:00
maxv
6a89606711 I started to KNF this file but quickly ended up figuring out I was not
courageous enough for such ugliness. So I only KNF'ed the first 300
lines.

I'll come back later.
2014-12-29 17:02:39 +00:00
maxv
0f13b9e40d Typos:
- "nessesary" -> "necessary" (comment)
 - "UNEXISTED" -> "NON-EXISTENT" (dprintf)
 - "NON-EXISTANT" -> "NON-EXISTENT" (dprintf)
 - "reach" -> "reaches" (comment)
2014-12-29 16:37:27 +00:00
christos
15f5b75638 abort earlier. 2014-12-29 16:35:38 +00:00
christos
59069b7aab Provide a simple getdisksize() api for gpt(8). 2014-12-29 16:27:43 +00:00
christos
ccbdb0d177 Factor out the getdisksize() drvctl method, and provide an alternative that
directly uses the disk ioctl's instead of relying on the drvctl device driver
which is currently not mandatory.
2014-12-29 16:27:06 +00:00
hannken
08aa9f9f06 Test v7fs_lstat_symlink is no longer expected to fail. 2014-12-29 15:31:44 +00:00
hannken
9837a8c2e9 Change v7fs to vcache. 2014-12-29 15:29:38 +00:00
hannken
b1a3c148f6 Defer deallocating unlinked inodes to v7fs_reclaim().
Remove v7fs_vnode_reload() and always use v7fs_inode_load().  No need
to search for a vnode we already hold a reference on.
2014-12-29 15:28:58 +00:00
hannken
2d6e8595d5 v7fs_getattr: adjust size of symlinks by -1 to compensate the trailing NUL.
Should fix the v7fs part of PR kern/48864.
2014-12-29 15:28:08 +00:00
martin
099d1616af If we launch a program with RUN_SILENT, give it more than two seconds to
run before we create an output window. On a swapping VAX it can take
seriously longer, and we get interactive status display even if the program
did not produce any error output otherwise.
2014-12-29 14:43:06 +00:00
wiz
b4595449ed Add comma in Dd. From Henning Petersen in PR 49515. 2014-12-29 14:22:25 +00:00
mlelstv
8b2f156e46 Avoid NULL pointer dereference if SMBIOS key "system-product" does not
exist.
2014-12-29 14:00:26 +00:00
ozaki-r
9116f11456 Remove unnecessary variable bc 2014-12-29 13:38:13 +00:00
mlelstv
8e4ce8bea0 Fix default label for non-standard sector size.
Avoid integer overflow in sanity check.
2014-12-29 13:13:20 +00:00
jmcneill
c767bf429f something wrong with MP, turn it off for now 2014-12-29 12:53:39 +00:00
mlelstv
1674d0824b align dk_strategy with checks from ld.c 2014-12-29 12:03:39 +00:00
jnemeth
2e0522b1d5 PR/49513 - Henning Petersen -- tyop 2014-12-29 10:38:52 +00:00
jnemeth
f047653252 PR/49513 - Henning Petersen -- tyop 2014-12-29 10:27:03 +00:00
jmcneill
5b6f48e0e1 MAX_BOOT_STRING is not large enough for noisy Rockchip U-Boot; bump bootargs to 1024 bytes 2014-12-29 03:16:07 +00:00
jmcneill
fe2ccb09db Copy cmdline from U-Boot to bootargs. 2014-12-28 21:34:33 +00:00
jmcneill
c238f14705 add -mfpu=neon to CPPFLAGS 2014-12-28 16:29:21 +00:00
jmcneill
25d3a7be3a remove redundant irq print 2014-12-28 16:27:14 +00:00
jmcneill
07297f2230 enable MULTIPROCESSOR 2014-12-28 16:04:05 +00:00
jmcneill
196997ef0d add MULTIPROCESSOR support 2014-12-28 16:03:51 +00:00
jmcneill
b464e6eb11 add SRAM, SCU, PMU offsets 2014-12-28 16:03:09 +00:00
maxv
6387e6748f Make this more readable (KNF). 2014-12-28 14:42:56 +00:00
nonaka
cb608a466d include "opt_ppcparam.h" for VERBOSE_INITPPC. 2014-12-28 14:13:56 +00:00
maxv
fc8f062e48 Prevent another division by zero in ntfs_loadntnode() by ensuring
spc != 0.
2014-12-28 13:11:52 +00:00
maxv
c1acce042f Ensure bps != 0 to prevent a division by zero. Zero byte per sector makes
no sense.
2014-12-28 12:57:44 +00:00
maxv
6d178278b3 Two typos:
- reserver4 -> reserved4 (in struct bootfile)
 - "inducates" -> "indicates" (comment)
2014-12-28 12:19:21 +00:00
maxv
ead51937de Make this more readable (KNF). 2014-12-28 12:13:22 +00:00