]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
MFC 263910, 263913, 263914, 263933, 263934, 263935, 263936, 263981, 263982,
authorian <ian@FreeBSD.org>
Sat, 17 May 2014 19:37:04 +0000 (19:37 +0000)
committerian <ian@FreeBSD.org>
Sat, 17 May 2014 19:37:04 +0000 (19:37 +0000)
commitac96a624aeb31b613fe5d1210998d31e29bcb2df
tree65562490066ab0b940ac6f4fea27daf43356cb54
parent91f6841891ec7c87458d26652e835aeeff9a52df
MFC 263910, 263913, 263914, 263933, 263934, 263935, 263936, 263981, 263982,

  Add more flags for the fpexc register from the ARM1176JZF-S Manual

  Initialise fpscr to a sane value when we create the pcb. This sets NaNs to
  be the default NaN and for denormalised numbers to be flushed to zero.

  VFP fixes/cleanups for ARM11:
   * Save the required VFP registers on context switch. If the exception bit
     is set we need to save and restore the FPINST register, and if the fp2v
     bit is also set we need to save and restore FPINST2.
   * Move saving and restoring the floating point control registers to C.
   * Clear the fpexc exception and fp2v flags on a floating-point exception.
   * Signal a SIGFPE if the fpexc exception flag is set on an undefined
     instruction. This is how the ARM core signals to software there is a
     floating-point exception.

  Add Cortex-A15 cpu id revisions.

  Exynos/Arndale...
  - Merge SoC-common parts
  - Enable iicbus device
  - Directly call kmem_alloc_contig to allocate framebuffer memory
    and pass VM_MEMATTR_UNCACHEABLE (no-cache, no-buffer).
    This fixes screen refreshing problem when data is updated too slowly.
  - Add support for keyboard used in Samsung Chromebook (ARM machine)
    Support covers device drivers for:
    - Interrupt Combiner
    - gpio/pad, External Interrupts Controller (pad)
    - I2C Interface
    - Chrome Embedded Controller
    - Chrome Keyboard
  - Use new gpio dev class in EHCI driver
  - Expand device tree information
  - Release i2c bus on detach.
27 files changed:
sys/arm/arm/cpufunc.c
sys/arm/arm/identcpu.c
sys/arm/arm/machdep.c
sys/arm/arm/vfp.c
sys/arm/arm/vm_machdep.c
sys/arm/conf/ARNDALE
sys/arm/conf/CHROMEBOOK
sys/arm/conf/CHROMEBOOK.hints [new file with mode: 0644]
sys/arm/conf/EXYNOS5250.common [new file with mode: 0644]
sys/arm/include/armreg.h
sys/arm/include/fp.h
sys/arm/include/vfp.h
sys/arm/samsung/exynos/chrome_ec.c [new file with mode: 0644]
sys/arm/samsung/exynos/chrome_ec.h [new file with mode: 0644]
sys/arm/samsung/exynos/chrome_kb.c [new file with mode: 0644]
sys/arm/samsung/exynos/chrome_kb.h [new file with mode: 0644]
sys/arm/samsung/exynos/exynos5_combiner.c [new file with mode: 0644]
sys/arm/samsung/exynos/exynos5_combiner.h [new file with mode: 0644]
sys/arm/samsung/exynos/exynos5_ehci.c
sys/arm/samsung/exynos/exynos5_fimd.c
sys/arm/samsung/exynos/exynos5_i2c.c [new file with mode: 0644]
sys/arm/samsung/exynos/exynos5_pad.c [new file with mode: 0644]
sys/arm/samsung/exynos/exynos5_pad.h [new file with mode: 0644]
sys/arm/samsung/exynos/files.exynos5
sys/boot/fdt/dts/arm/exynos5250-arndale.dts
sys/boot/fdt/dts/arm/exynos5250-chromebook.dts
sys/boot/fdt/dts/arm/exynos5250.dtsi