Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
bc5f4523
Commit
bc5f4523
authored
17 years ago
by
Dave Airlie
Committed by
Dave Airlie
17 years ago
Browse files
Options
Download
Email Patches
Plain Diff
drm: run cleanfile across drm tree
Signed-off-by:
Dave Airlie
<
airlied@linux.ie
>
parent
8562b3f2
Changes
43
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
73 additions
and
84 deletions
+73
-84
drivers/char/drm/Kconfig
drivers/char/drm/Kconfig
+4
-5
drivers/char/drm/Makefile
drivers/char/drm/Makefile
+0
-2
drivers/char/drm/README.drm
drivers/char/drm/README.drm
+0
-1
drivers/char/drm/drm_bufs.c
drivers/char/drm/drm_bufs.c
+3
-5
drivers/char/drm/drm_context.c
drivers/char/drm/drm_context.c
+1
-1
drivers/char/drm/drm_hashtab.c
drivers/char/drm/drm_hashtab.c
+2
-3
drivers/char/drm/drm_hashtab.h
drivers/char/drm/drm_hashtab.h
+0
-1
drivers/char/drm/drm_ioctl.c
drivers/char/drm/drm_ioctl.c
+1
-1
drivers/char/drm/drm_memory.c
drivers/char/drm/drm_memory.c
+0
-1
drivers/char/drm/drm_mm.c
drivers/char/drm/drm_mm.c
+0
-1
drivers/char/drm/drm_os_linux.h
drivers/char/drm/drm_os_linux.h
+2
-2
drivers/char/drm/drm_pciids.h
drivers/char/drm/drm_pciids.h
+0
-1
drivers/char/drm/drm_sarea.h
drivers/char/drm/drm_sarea.h
+1
-1
drivers/char/drm/drm_stub.c
drivers/char/drm/drm_stub.c
+1
-1
drivers/char/drm/i810_dma.c
drivers/char/drm/i810_dma.c
+3
-3
drivers/char/drm/i810_drv.h
drivers/char/drm/i810_drv.h
+25
-25
drivers/char/drm/i830_dma.c
drivers/char/drm/i830_dma.c
+1
-1
drivers/char/drm/i830_drm.h
drivers/char/drm/i830_drm.h
+4
-4
drivers/char/drm/i830_drv.h
drivers/char/drm/i830_drv.h
+24
-24
drivers/char/drm/i830_irq.c
drivers/char/drm/i830_irq.c
+1
-1
No files found.
drivers/char/drm/Kconfig
View file @
bc5f4523
...
...
@@ -38,7 +38,7 @@ config DRM_RADEON
Choose this option if you have an ATI Radeon graphics card. There
are both PCI and AGP versions. You don't need to choose this to
run the Radeon in plain VGA mode.
If M is selected, the module will be called radeon.
config DRM_I810
...
...
@@ -71,9 +71,9 @@ config DRM_I915
852GM, 855GM 865G or 915G integrated graphics. If M is selected, the
module will be called i915. AGP support is required for this driver
to work. This driver is used by the Intel driver in X.org 6.8 and
XFree86 4.4 and above. If unsure, build this and i830 as modules and
XFree86 4.4 and above. If unsure, build this and i830 as modules and
the X server will load the correct one.
endchoice
config DRM_MGA
...
...
@@ -88,7 +88,7 @@ config DRM_SIS
tristate "SiS video cards"
depends on DRM && AGP
help
Choose this option if you have a SiS 630 or compatible video
Choose this option if you have a SiS 630 or compatible video
chipset. If M is selected the module will be called sis. AGP
support is required for this driver to work.
...
...
@@ -105,4 +105,3 @@ config DRM_SAVAGE
help
Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
chipset. If M is selected the module will be called savage.
This diff is collapsed.
Click to expand it.
drivers/char/drm/Makefile
View file @
bc5f4523
...
...
@@ -38,5 +38,3 @@ obj-$(CONFIG_DRM_I915) += i915.o
obj-$(CONFIG_DRM_SIS)
+=
sis.o
obj-$(CONFIG_DRM_SAVAGE)
+=
savage.o
obj-$(CONFIG_DRM_VIA)
+=
via.o
This diff is collapsed.
Click to expand it.
drivers/char/drm/README.drm
View file @
bc5f4523
...
...
@@ -41,4 +41,3 @@ For specific information about kernel-level support, see:
A Security Analysis of the Direct Rendering Infrastructure
http://dri.sourceforge.net/doc/security_low_level.html
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_bufs.c
View file @
bc5f4523
...
...
@@ -184,7 +184,7 @@ static int drm_addmap_core(struct drm_device * dev, unsigned int offset,
return
-
ENOMEM
;
}
}
break
;
case
_DRM_SHM
:
list
=
drm_find_matching_map
(
dev
,
map
);
...
...
@@ -814,9 +814,9 @@ int drm_addbufs_pci(struct drm_device * dev, struct drm_buf_desc * request)
page_count
=
0
;
while
(
entry
->
buf_count
<
count
)
{
dmah
=
drm_pci_alloc
(
dev
,
PAGE_SIZE
<<
page_order
,
0x1000
,
0xfffffffful
);
if
(
!
dmah
)
{
/* Set count correctly so we free the proper amount. */
entry
->
buf_count
=
count
;
...
...
@@ -1592,5 +1592,3 @@ int drm_order(unsigned long size)
return
order
;
}
EXPORT_SYMBOL
(
drm_order
);
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_context.c
View file @
bc5f4523
...
...
@@ -159,7 +159,7 @@ int drm_getsareactx(struct drm_device *dev, void *data,
request
->
handle
=
NULL
;
list_for_each_entry
(
_entry
,
&
dev
->
maplist
,
head
)
{
if
(
_entry
->
map
==
map
)
{
request
->
handle
=
request
->
handle
=
(
void
*
)(
unsigned
long
)
_entry
->
user_token
;
break
;
}
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_hashtab.c
View file @
bc5f4523
...
...
@@ -80,7 +80,7 @@ void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key)
}
}
static
struct
hlist_node
*
drm_ht_find_key
(
struct
drm_open_hash
*
ht
,
static
struct
hlist_node
*
drm_ht_find_key
(
struct
drm_open_hash
*
ht
,
unsigned
long
key
)
{
struct
drm_hash_item
*
entry
;
...
...
@@ -129,7 +129,7 @@ int drm_ht_insert_item(struct drm_open_hash *ht, struct drm_hash_item *item)
}
/*
* Just insert an item and return any "bits" bit key that hasn't been
* Just insert an item and return any "bits" bit key that hasn't been
* used before.
*/
int
drm_ht_just_insert_please
(
struct
drm_open_hash
*
ht
,
struct
drm_hash_item
*
item
,
...
...
@@ -200,4 +200,3 @@ void drm_ht_remove(struct drm_open_hash *ht)
ht
->
table
=
NULL
;
}
}
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_hashtab.h
View file @
bc5f4523
...
...
@@ -65,4 +65,3 @@ extern void drm_ht_remove(struct drm_open_hash *ht);
#endif
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_ioctl.c
View file @
bc5f4523
...
...
@@ -234,7 +234,7 @@ int drm_getclient(struct drm_device *dev, void *data,
idx
=
client
->
idx
;
mutex_lock
(
&
dev
->
struct_mutex
);
if
(
list_empty
(
&
dev
->
filelist
))
{
mutex_unlock
(
&
dev
->
struct_mutex
);
return
-
EINVAL
;
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_memory.c
View file @
bc5f4523
...
...
@@ -179,4 +179,3 @@ void drm_core_ioremapfree(struct drm_map *map, struct drm_device *dev)
iounmap
(
map
->
handle
);
}
EXPORT_SYMBOL
(
drm_core_ioremapfree
);
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_mm.c
View file @
bc5f4523
...
...
@@ -293,4 +293,3 @@ void drm_mm_takedown(struct drm_mm * mm)
drm_free
(
entry
,
sizeof
(
*
entry
),
DRM_MEM_MM
);
}
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_os_linux.h
View file @
bc5f4523
...
...
@@ -69,9 +69,9 @@ static __inline__ int mtrr_del(int reg, unsigned long base, unsigned long size)
#define DRM_COPY_TO_USER(arg1, arg2, arg3) \
copy_to_user(arg1, arg2, arg3)
/* Macros for copyfrom user, but checking readability only once */
#define DRM_VERIFYAREA_READ( uaddr, size )
\
#define DRM_VERIFYAREA_READ( uaddr, size ) \
(access_ok( VERIFY_READ, uaddr, size ) ? 0 : -EFAULT)
#define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3)
\
#define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3) \
__copy_from_user(arg1, arg2, arg3)
#define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3) \
__copy_to_user(arg1, arg2, arg3)
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_pciids.h
View file @
bc5f4523
...
...
@@ -312,4 +312,3 @@
{0x8086, 0x2a02, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0x8086, 0x2a12, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0, 0, 0}
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_sarea.h
View file @
bc5f4523
...
...
@@ -45,7 +45,7 @@
#endif
/** Maximum number of drawables in the SAREA */
#define SAREA_MAX_DRAWABLES
256
#define SAREA_MAX_DRAWABLES 256
#define SAREA_DRAWABLE_CLAIMED_ENTRY 0x80000000
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/drm_stub.c
View file @
bc5f4523
...
...
@@ -224,7 +224,7 @@ int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
}
if
((
ret
=
drm_get_head
(
dev
,
&
dev
->
primary
)))
goto
err_g2
;
DRM_INFO
(
"Initialized %s %d.%d.%d %s on minor %d
\n
"
,
driver
->
name
,
driver
->
major
,
driver
->
minor
,
driver
->
patchlevel
,
driver
->
date
,
dev
->
primary
.
minor
);
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i810_dma.c
View file @
bc5f4523
...
...
@@ -40,7 +40,7 @@
#define I810_BUF_FREE 2
#define I810_BUF_CLIENT 1
#define I810_BUF_HARDWARE
0
#define I810_BUF_HARDWARE 0
#define I810_BUF_UNMAPPED 0
#define I810_BUF_MAPPED 1
...
...
@@ -848,7 +848,7 @@ static void i810_dma_quiescent(struct drm_device * dev)
drm_i810_private_t
*
dev_priv
=
dev
->
dev_private
;
RING_LOCALS
;
/*
printk("%s\n", __FUNCTION__); */
/* printk("%s\n", __FUNCTION__); */
i810_kernel_lost_context
(
dev
);
...
...
@@ -869,7 +869,7 @@ static int i810_flush_queue(struct drm_device * dev)
int
i
,
ret
=
0
;
RING_LOCALS
;
/*
printk("%s\n", __FUNCTION__); */
/* printk("%s\n", __FUNCTION__); */
i810_kernel_lost_context
(
dev
);
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i810_drv.h
View file @
bc5f4523
...
...
@@ -25,7 +25,7 @@
* DEALINGS IN THE SOFTWARE.
*
* Authors: Rickard E. (Rik) Faith <faith@valinux.com>
*
Jeff Hartmann <jhartmann@valinux.com>
* Jeff Hartmann <jhartmann@valinux.com>
*
*/
...
...
@@ -134,7 +134,7 @@ extern int i810_max_ioctl;
#define I810_ADDR(reg) (I810_BASE(reg) + reg)
#define I810_DEREF(reg) *(__volatile__ int *)I810_ADDR(reg)
#define I810_READ(reg) I810_DEREF(reg)
#define I810_WRITE(reg,val)
do { I810_DEREF(reg) = val; } while (0)
#define I810_WRITE(reg,val) do { I810_DEREF(reg) = val; } while (0)
#define I810_DEREF16(reg) *(__volatile__ u16 *)I810_ADDR(reg)
#define I810_READ16(reg) I810_DEREF16(reg)
#define I810_WRITE16(reg,val) do { I810_DEREF16(reg) = val; } while (0)
...
...
@@ -155,19 +155,19 @@ extern int i810_max_ioctl;
} while (0)
#define ADVANCE_LP_RING() do { \
if (I810_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING\n");
\
dev_priv->ring.tail = outring;
\
if (I810_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING\n"); \
dev_priv->ring.tail = outring;
\
I810_WRITE(LP_RING + RING_TAIL, outring); \
} while(0)
#define OUT_RING(n) do {
\
#define OUT_RING(n) do { \
if (I810_VERBOSE) DRM_DEBUG(" OUT_RING %x\n", (int)(n)); \
*(volatile unsigned int *)(virt + outring) = n; \
outring += 4; \
outring &= ringmask; \
} while (0)
#define GFX_OP_USER_INTERRUPT
((0<<29)|(2<<23))
#define GFX_OP_USER_INTERRUPT ((0<<29)|(2<<23))
#define GFX_OP_BREAKPOINT_INTERRUPT ((0<<29)|(1<<23))
#define CMD_REPORT_HEAD (7<<23)
#define CMD_STORE_DWORD_IDX ((0x21<<23) | 0x1)
...
...
@@ -184,28 +184,28 @@ extern int i810_max_ioctl;
#define I810REG_HWSTAM 0x02098
#define I810REG_INT_IDENTITY_R 0x020a4
#define I810REG_INT_MASK_R
0x020a8
#define I810REG_INT_MASK_R 0x020a8
#define I810REG_INT_ENABLE_R 0x020a0
#define LP_RING
0x2030
#define HP_RING
0x2040
#define RING_TAIL
0x00
#define LP_RING
0x2030
#define HP_RING
0x2040
#define RING_TAIL 0x00
#define TAIL_ADDR 0x000FFFF8
#define RING_HEAD
0x04
#define HEAD_WRAP_COUNT
0xFFE00000
#define HEAD_WRAP_ONE
0x00200000
#define HEAD_ADDR
0x001FFFFC
#define RING_START
0x08
#define START_ADDR
0x00FFFFF8
#define RING_LEN
0x0C
#define RING_NR_PAGES
0x000FF000
#define RING_REPORT_MASK
0x00000006
#define RING_REPORT_64K
0x00000002
#define RING_REPORT_128K
0x00000004
#define RING_NO_REPORT
0x00000000
#define RING_VALID_MASK
0x00000001
#define RING_VALID
0x00000001
#define RING_INVALID
0x00000000
#define RING_HEAD 0x04
#define HEAD_WRAP_COUNT
0xFFE00000
#define HEAD_WRAP_ONE
0x00200000
#define HEAD_ADDR
0x001FFFFC
#define RING_START 0x08
#define START_ADDR
0x00FFFFF8
#define RING_LEN 0x0C
#define RING_NR_PAGES
0x000FF000
#define RING_REPORT_MASK 0x00000006
#define RING_REPORT_64K
0x00000002
#define RING_REPORT_128K 0x00000004
#define RING_NO_REPORT
0x00000000
#define RING_VALID_MASK
0x00000001
#define RING_VALID
0x00000001
#define RING_INVALID
0x00000000
#define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19))
#define SC_UPDATE_SCISSOR (0x1<<1)
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i830_dma.c
View file @
bc5f4523
...
...
@@ -42,7 +42,7 @@
#define I830_BUF_FREE 2
#define I830_BUF_CLIENT 1
#define I830_BUF_HARDWARE
0
#define I830_BUF_HARDWARE 0
#define I830_BUF_UNMAPPED 0
#define I830_BUF_MAPPED 1
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i830_drm.h
View file @
bc5f4523
...
...
@@ -12,9 +12,9 @@
#define _I830_DEFINES_
#define I830_DMA_BUF_ORDER 12
#define I830_DMA_BUF_SZ
(1<<I830_DMA_BUF_ORDER)
#define I830_DMA_BUF_NR
256
#define I830_NR_SAREA_CLIPRECTS
8
#define I830_DMA_BUF_SZ
(1<<I830_DMA_BUF_ORDER)
#define I830_DMA_BUF_NR
256
#define I830_NR_SAREA_CLIPRECTS
8
/* Each region is a minimum of 64k, and there are at most 64 of them.
*/
...
...
@@ -58,7 +58,7 @@
#define I830_UPLOAD_TEXBLEND_MASK 0xf00000
#define I830_UPLOAD_TEX_PALETTE_N(n) (0x1000000 << (n))
#define I830_UPLOAD_TEX_PALETTE_SHARED 0x4000000
#define I830_UPLOAD_STIPPLE
0x8000000
#define I830_UPLOAD_STIPPLE
0x8000000
/* Indices into buf.Setup where various bits of state are mirrored per
* context and per buffer. These can be fired at the card as a unit,
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i830_drv.h
View file @
bc5f4523
...
...
@@ -25,7 +25,7 @@
* DEALINGS IN THE SOFTWARE.
*
* Authors: Rickard E. (Rik) Faith <faith@valinux.com>
*
Jeff Hartmann <jhartmann@valinux.com>
* Jeff Hartmann <jhartmann@valinux.com>
*
*/
...
...
@@ -183,7 +183,7 @@ extern int i830_driver_device_is_agp(struct drm_device * dev);
extern
int
i830_wait_ring
(
struct
drm_device
*
dev
,
int
n
,
const
char
*
caller
);
#define GFX_OP_USER_INTERRUPT
((0<<29)|(2<<23))
#define GFX_OP_USER_INTERRUPT ((0<<29)|(2<<23))
#define GFX_OP_BREAKPOINT_INTERRUPT ((0<<29)|(1<<23))
#define CMD_REPORT_HEAD (7<<23)
#define CMD_STORE_DWORD_IDX ((0x21<<23) | 0x1)
...
...
@@ -203,30 +203,30 @@ extern int i830_wait_ring(struct drm_device * dev, int n, const char *caller);
#define I830REG_HWSTAM 0x02098
#define I830REG_INT_IDENTITY_R 0x020a4
#define I830REG_INT_MASK_R
0x020a8
#define I830REG_INT_MASK_R 0x020a8
#define I830REG_INT_ENABLE_R 0x020a0
#define I830_IRQ_RESERVED ((1<<13)|(3<<2))
#define LP_RING
0x2030
#define HP_RING
0x2040
#define RING_TAIL
0x00
#define LP_RING
0x2030
#define HP_RING
0x2040
#define RING_TAIL 0x00
#define TAIL_ADDR 0x001FFFF8
#define RING_HEAD
0x04
#define HEAD_WRAP_COUNT
0xFFE00000
#define HEAD_WRAP_ONE
0x00200000
#define HEAD_ADDR
0x001FFFFC
#define RING_START
0x08
#define START_ADDR
0x0xFFFFF000
#define RING_LEN
0x0C
#define RING_NR_PAGES
0x001FF000
#define RING_REPORT_MASK
0x00000006
#define RING_REPORT_64K
0x00000002
#define RING_REPORT_128K
0x00000004
#define RING_NO_REPORT
0x00000000
#define RING_VALID_MASK
0x00000001
#define RING_VALID
0x00000001
#define RING_INVALID
0x00000000
#define RING_HEAD 0x04
#define HEAD_WRAP_COUNT
0xFFE00000
#define HEAD_WRAP_ONE
0x00200000
#define HEAD_ADDR
0x001FFFFC
#define RING_START 0x08
#define START_ADDR
0x0xFFFFF000
#define RING_LEN 0x0C
#define RING_NR_PAGES
0x001FF000
#define RING_REPORT_MASK 0x00000006
#define RING_REPORT_64K
0x00000002
#define RING_REPORT_128K 0x00000004
#define RING_NO_REPORT
0x00000000
#define RING_VALID_MASK
0x00000001
#define RING_VALID
0x00000001
#define RING_INVALID
0x00000000
#define GFX_OP_SCISSOR ((0x3<<29)|(0x1c<<24)|(0x10<<19))
#define SC_UPDATE_SCISSOR (0x1<<1)
...
...
@@ -279,9 +279,9 @@ extern int i830_wait_ring(struct drm_device * dev, int n, const char *caller);
#define XY_SRC_COPY_BLT_WRITE_ALPHA (1<<21)
#define XY_SRC_COPY_BLT_WRITE_RGB (1<<20)
#define MI_BATCH_BUFFER
((0x30<<23)|1)
#define MI_BATCH_BUFFER_START
(0x31<<23)
#define MI_BATCH_BUFFER_END
(0xA<<23)
#define MI_BATCH_BUFFER
((0x30<<23)|1)
#define MI_BATCH_BUFFER_START (0x31<<23)
#define MI_BATCH_BUFFER_END (0xA<<23)
#define MI_BATCH_NON_SECURE (1)
#define MI_WAIT_FOR_EVENT ((0x3<<23))
...
...
This diff is collapsed.
Click to expand it.
drivers/char/drm/i830_irq.c
View file @
bc5f4523
...
...
@@ -144,7 +144,7 @@ int i830_irq_wait(struct drm_device *dev, void *data,
struct
drm_file
*
file_priv
)
{
drm_i830_private_t
*
dev_priv
=
dev
->
dev_private
;
drm_i830_irq_wait_t
*
irqwait
=
data
;
drm_i830_irq_wait_t
*
irqwait
=
data
;
if
(
!
dev_priv
)
{
DRM_ERROR
(
"%s called with no initialization
\n
"
,
__FUNCTION__
);
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment