dd0273284c
DAX is a coprocessor which resides on the SPARC M7 (DAX1) and M8 (DAX2) processor chips, and has direct access to the CPU's L3 caches as well as physical memory. It can perform several operations on data streams with various input and output formats. This driver provides a transport mechanism and has limited knowledge of the various opcodes and data formats. A user space library provides high level services and translates these into low level commands which are then passed into the driver and subsequently the hypervisor and the coprocessor. The library is the recommended way for applications to use the coprocessor, and the driver interface is not intended for general use. Signed-off-by: Rob Gardner <rob.gardner@oracle.com> Signed-off-by: Jonathan Helman <jonathan.helman@oracle.com> Signed-off-by: Sanath Kumar <sanath099@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
620 B
Makefile
20 lines
620 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the kernel miscellaneous SPARC device drivers.
|
|
#
|
|
# Dave Redman Frame Buffer tuning support.
|
|
#
|
|
# 7 October 2000, Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
|
|
# Rewritten to use lists instead of if-statements.
|
|
#
|
|
|
|
bbc-objs := bbc_i2c.o bbc_envctrl.o
|
|
|
|
obj-$(CONFIG_ENVCTRL) += envctrl.o
|
|
obj-$(CONFIG_DISPLAY7SEG) += display7seg.o
|
|
obj-$(CONFIG_OBP_FLASH) += flash.o
|
|
obj-$(CONFIG_SUN_OPENPROMIO) += openprom.o
|
|
obj-$(CONFIG_TADPOLE_TS102_UCTRL) += uctrl.o
|
|
obj-$(CONFIG_SUN_JSFLASH) += jsflash.o
|
|
obj-$(CONFIG_BBC_I2C) += bbc.o
|
|
obj-$(CONFIG_ORACLE_DAX) += oradax.o
|