]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/commit
MFC 263910, 263913, 263914, 263933, 263934, 263935, 263936, 263981, 263982,
authorian <ian@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sat, 17 May 2014 19:37:04 +0000 (19:37 +0000)
committerian <ian@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sat, 17 May 2014 19:37:04 +0000 (19:37 +0000)
commit63b0abae1e119845ba2bf11703a35c0b7d97c54e
tree65562490066ab0b940ac6f4fea27daf43356cb54
parentc4bb0d8ad27a884cd6196061f91684f640b59aa4
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.

git-svn-id: svn://svn.freebsd.org/base/stable/10@266341 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
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