Skip to content

Commit 42c9359

Browse files
committed
MALI: delete old drivers; add more debug prints
1 parent c6fa3a6 commit 42c9359

1,984 files changed

Lines changed: 236 additions & 683083 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

arch/arm64/configs/exynos9820-m62xx_defconfig

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3247,13 +3247,6 @@ CONFIG_MEDIA_TUNER_MC44S803=y
32473247
# ARM GPU Configuration
32483248
#
32493249
CONFIG_MALI_DDK_VERSION=y
3250-
# CONFIG_MALI_BIFROST_R10P0 is not set
3251-
# CONFIG_MALI_BIFROST_R12P0 is not set
3252-
# CONFIG_MALI_BIFROST_R14P0 is not set
3253-
# CONFIG_MALI_BIFROST_R16P0 is not set
3254-
# CONFIG_MALI_BIFROST_R19P0_Q is not set
3255-
# CONFIG_MALI_BIFROST_R26P0 is not set
3256-
# CONFIG_MALI_BIFROST_R32P1 is not set
32573250
CONFIG_MALI_BIFROST_R38P1=y
32583251
CONFIG_MALI_MIDGARD=y
32593252
# CONFIG_MALI_GATOR_SUPPORT is not set

arch/arm64/configs/exynos9820_defconfig

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3354,13 +3354,6 @@ CONFIG_MEDIA_TUNER_MC44S803=y
33543354
# ARM GPU Configuration
33553355
#
33563356
CONFIG_MALI_DDK_VERSION=y
3357-
# CONFIG_MALI_BIFROST_R10P0 is not set
3358-
# CONFIG_MALI_BIFROST_R12P0 is not set
3359-
# CONFIG_MALI_BIFROST_R14P0 is not set
3360-
# CONFIG_MALI_BIFROST_R16P0 is not set
3361-
# CONFIG_MALI_BIFROST_R19P0_Q is not set
3362-
# CONFIG_MALI_BIFROST_R26P0 is not set
3363-
# CONFIG_MALI_BIFROST_R32P1 is not set
33643357
CONFIG_MALI_BIFROST_R38P1=y
33653358
CONFIG_MALI_MIDGARD=y
33663359
# CONFIG_MALI_GATOR_SUPPORT is not set

drivers/gpu/arm/Kbuild

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,6 @@
1010
#
1111

1212
ifeq ($(CONFIG_MALI_DDK_VERSION),y)
13-
ifeq ($(CONFIG_MALI_BIFROST_R10P0),y)
14-
obj-y += b_r10p0/
15-
endif
16-
ifeq ($(CONFIG_MALI_BIFROST_R12P0),y)
17-
obj-y += b_r12p0/
18-
endif
19-
ifeq ($(CONFIG_MALI_BIFROST_R14P0),y)
20-
obj-y += b_r14p0/
21-
endif
22-
ifeq ($(CONFIG_MALI_BIFROST_R16P0),y)
23-
obj-y += b_r16p0/
24-
endif
25-
ifeq ($(CONFIG_MALI_BIFROST_R19P0_Q),y)
26-
obj-y += b_r19p0/
27-
endif
28-
ifeq ($(CONFIG_MALI_BIFROST_R26P0),y)
29-
obj-y += b_r26p0/
30-
endif
31-
ifeq ($(CONFIG_MALI_BIFROST_R32P1),y)
32-
obj-y += bv_r32p1/
33-
endif
3413
ifeq ($(CONFIG_MALI_BIFROST_R38P1),y)
3514
obj-y += bv_r38p1/
3615
endif

drivers/gpu/arm/Kconfig

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -27,67 +27,11 @@ choice
2727
help
2828
Select the gpu support version.
2929

30-
config MALI_BIFROST_R10P0
31-
depends on MALI_DDK_VERSION
32-
bool "Bifrost r10p0 driver"
33-
34-
config MALI_BIFROST_R12P0
35-
depends on MALI_DDK_VERSION
36-
bool "Bifrost r12p0 driver"
37-
38-
config MALI_BIFROST_R14P0
39-
depends on MALI_DDK_VERSION
40-
bool "Bifrost r14p0 driver"
41-
42-
config MALI_BIFROST_R16P0
43-
depends on MALI_DDK_VERSION
44-
bool "Bifrost r16p0 driver"
45-
46-
config MALI_BIFROST_R19P0_Q
47-
depends on MALI_DDK_VERSION
48-
bool "Bifrost r19p0 driver for Android Q"
49-
50-
config MALI_BIFROST_R26P0
51-
depends on MALI_DDK_VERSION
52-
bool "Bifrost r26p0 driver for Android R"
53-
54-
config MALI_BIFROST_R32P1
55-
depends on MALI_DDK_VERSION
56-
bool "Bifrost r32p1 driver for Android S"
57-
5830
config MALI_BIFROST_R38P1
5931
depends on MALI_DDK_VERSION
6032
bool "Bifrost r38p1 driver for Android T"
6133
endchoice
6234

63-
if MALI_BIFROST_R10P0
64-
source "drivers/gpu/arm/b_r10p0/Kconfig"
65-
endif
66-
67-
if MALI_BIFROST_R12P0
68-
source "drivers/gpu/arm/b_r12p0/Kconfig"
69-
endif
70-
71-
if MALI_BIFROST_R14P0
72-
source "drivers/gpu/arm/b_r14p0/Kconfig"
73-
endif
74-
75-
if MALI_BIFROST_R16P0
76-
source "drivers/gpu/arm/b_r16p0/Kconfig"
77-
endif
78-
79-
if MALI_BIFROST_R19P0_Q
80-
source "drivers/gpu/arm/b_r19p0/Kconfig"
81-
endif
82-
83-
if MALI_BIFROST_R26P0
84-
source "drivers/gpu/arm/b_r26p0/Kconfig"
85-
endif
86-
87-
if MALI_BIFROST_R32P1
88-
source "drivers/gpu/arm/bv_r32p1/Kconfig"
89-
endif
90-
9135
if MALI_BIFROST_R38P1
9236
source "drivers/gpu/arm/bv_r38p1/Kconfig"
9337
endif

drivers/gpu/arm/b_r10p0/Kbuild

Lines changed: 0 additions & 186 deletions
This file was deleted.

0 commit comments

Comments
 (0)