bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 1 | package twrp |
| 2 | |
| 3 | import ( |
| 4 | "android/soong/android" |
| 5 | "android/soong/cc" |
| 6 | "fmt" |
| 7 | "path/filepath" |
| 8 | "strings" |
| 9 | ) |
| 10 | |
| 11 | func globalFlags(ctx android.BaseContext) []string { |
| 12 | var cflags []string |
| 13 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 14 | if getMakeVars(ctx, "TW_SUPPORT_INPUT_1_2_HAPTICS") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 15 | cflags = append(cflags, "-DUSE_QTI_HAPTICS") |
| 16 | } |
| 17 | |
nebrassy | 76224bd | 2021-04-05 11:52:44 +0200 | [diff] [blame] | 18 | if getMakeVars(ctx, "TW_SUPPORT_INPUT_AIDL_HAPTICS") == "true" { |
| 19 | cflags = append(cflags, "-DUSE_QTI_AIDL_HAPTICS") |
| 20 | } |
| 21 | |
soulr344 | f831bff | 2021-08-16 09:46:38 +0500 | [diff] [blame] | 22 | if getMakeVars(ctx, "TW_USE_SAMSUNG_HAPTICS") == "true" { |
| 23 | cflags = append(cflags, "-DUSE_SAMSUNG_HAPTICS") |
| 24 | } |
| 25 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 26 | if getMakeVars(ctx, "TW_TARGET_USES_QCOM_BSP") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 27 | cflags = append(cflags, "-DMSM_BSP") |
| 28 | } |
| 29 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 30 | if getMakeVars(ctx, "TW_NEW_ION_HEAP") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 31 | cflags = append(cflags, "-DNEW_ION_HEAP") |
| 32 | } |
| 33 | |
nebrassy | 0c3533f | 2021-11-14 16:05:51 +0100 | [diff] [blame] | 34 | matches, err := filepath.Glob("external/libdrm/Android.*") |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 35 | _ = matches |
| 36 | if err == nil { |
| 37 | cflags = append(cflags, "-DHAS_DRM") |
| 38 | } |
| 39 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 40 | if getMakeVars(ctx, "TW_INCLUDE_JPEG") != "" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 41 | cflags = append(cflags, "-DTW_INCLUDE_JPEG") |
| 42 | } |
| 43 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 44 | if getMakeVars(ctx, "RECOVERY_TOUCHSCREEN_SWAP_XY") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 45 | cflags = append(cflags, "-DRECOVERY_TOUCHSCREEN_SWAP_XY") |
| 46 | } |
| 47 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 48 | if getMakeVars(ctx, "RECOVERY_TOUCHSCREEN_FLIP_X") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 49 | cflags = append(cflags, "-DRECOVERY_TOUCHSCREEN_FLIP_X") |
| 50 | } |
| 51 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 52 | if getMakeVars(ctx, "RECOVERY_TOUCHSCREEN_FLIP_Y") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 53 | cflags = append(cflags, "-DRECOVERY_TOUCHSCREEN_FLIP_Y") |
| 54 | } |
| 55 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 56 | if getMakeVars(ctx, "RECOVERY_GRAPHICS_FORCE_USE_LINELENGTH") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 57 | cflags = append(cflags, "-DRECOVERY_GRAPHICS_FORCE_USE_LINELENGTH") |
| 58 | } |
| 59 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 60 | if getMakeVars(ctx, "RECOVERY_GRAPHICS_FORCE_SINGLE_BUFFER") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 61 | cflags = append(cflags, "-DRECOVERY_GRAPHICS_FORCE_SINGLE_BUFFER") |
| 62 | } |
| 63 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 64 | if getMakeVars(ctx, "TWRP_EVENT_LOGGING") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 65 | cflags = append(cflags, "-D_EVENT_LOGGING") |
| 66 | } |
| 67 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 68 | var pixelFormat = strings.Replace(getMakeVars(ctx, "TARGET_RECOVERY_FORCE_PIXEL_FORMAT"), "\"", "", -1) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 69 | |
| 70 | switch pixelFormat { |
| 71 | case "RGBA_8888": |
| 72 | fmt.Println("****************************************************************************)") |
| 73 | fmt.Println("* TARGET_RECOVERY_FORCE_PIXEL_FORMAT := RGBA_8888 not implemented yet *)") |
| 74 | fmt.Println("****************************************************************************)") |
| 75 | cflags = append(cflags, "-DRECOVERY_RGBA") |
| 76 | break |
| 77 | |
| 78 | case "RGBX_8888": |
| 79 | fmt.Println("****************************************************************************)") |
| 80 | fmt.Println("* TARGET_RECOVERY_FORCE_PIXEL_FORMAT := RGBX_8888 not implemented yet *)") |
| 81 | fmt.Println("****************************************************************************)") |
| 82 | cflags = append(cflags, "-DRECOVERY_RGBX") |
| 83 | break |
| 84 | |
| 85 | case "BGRA_8888": |
| 86 | fmt.Println("****************************************************************************)") |
| 87 | fmt.Println("* TARGET_RECOVERY_FORCE_PIXEL_FORMAT := BGRA_8888 not implemented yet *)") |
| 88 | fmt.Println("****************************************************************************)") |
| 89 | cflags = append(cflags, "-DRECOVERY_BGRA") |
| 90 | break |
| 91 | |
| 92 | case "RGB_565": |
| 93 | cflags = append(cflags, "-DRECOVERY_FORCE_RGB_565") |
| 94 | break |
| 95 | } |
| 96 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 97 | pixelFormat = strings.Replace(getMakeVars(ctx, "TARGET_RECOVERY_PIXEL_FORMAT"), "\"", "", -1) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 98 | switch pixelFormat { |
| 99 | case "ABGR_8888": |
| 100 | cflags = append(cflags, "-DRECOVERY_ABGR") |
| 101 | break |
| 102 | |
| 103 | case "RGBX_8888": |
| 104 | cflags = append(cflags, "-DRECOVERY_RGBX") |
| 105 | break |
| 106 | |
| 107 | case "BGRA_8888": |
| 108 | cflags = append(cflags, "-DRECOVERY_BGRA") |
| 109 | break |
| 110 | } |
| 111 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 112 | if getMakeVars(ctx, "TARGET_RECOVERY_OVERSCAN_PERCENT") != "" { |
| 113 | cflags = append(cflags, "-DDOVERSCAN_PERCENT="+getMakeVars(ctx, "TARGET_RECOVERY_OVERSCAN_PERCENT")) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 114 | } else { |
| 115 | cflags = append(cflags, "-DOVERSCAN_PERCENT=0") |
| 116 | } |
| 117 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 118 | if getMakeVars(ctx, "TW_SCREEN_BLANK_ON_BOOT") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 119 | cflags = append(cflags, "-DTW_SCREEN_BLANK_ON_BOOT") |
| 120 | } |
| 121 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 122 | if getMakeVars(ctx, "TW_FBIOPAN") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 123 | cflags = append(cflags, "-DTW_FBIOPAN") |
| 124 | } |
| 125 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 126 | var tw_rotation = getMakeVars(ctx, "TW_ROTATION") |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 127 | switch tw_rotation { |
| 128 | case "0": |
bigbiff | dd16123 | 2021-11-08 19:00:33 -0500 | [diff] [blame] | 129 | fallthrough |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 130 | case "90": |
bigbiff | dd16123 | 2021-11-08 19:00:33 -0500 | [diff] [blame] | 131 | fallthrough |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 132 | case "180": |
bigbiff | dd16123 | 2021-11-08 19:00:33 -0500 | [diff] [blame] | 133 | fallthrough |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 134 | case "270": |
| 135 | cflags = append(cflags, "-DTW_ROTATION="+tw_rotation) |
| 136 | default: |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 137 | if getMakeVars(ctx, "BOARD_HAS_FLIPPED_SCREEN") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 138 | cflags = append(cflags, "-DTW_ROTATION=180") |
| 139 | } else { |
| 140 | cflags = append(cflags, "-DTW_ROTATION=0") |
| 141 | } |
| 142 | } |
| 143 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 144 | if getMakeVars(ctx, "TW_IGNORE_MAJOR_AXIS_0") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 145 | cflags = append(cflags, "-DTW_IGNORE_MAJOR_AXIS_0") |
| 146 | } |
| 147 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 148 | if getMakeVars(ctx, "TW_IGNORE_MT_POSITION_0") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 149 | cflags = append(cflags, "-DTW_IGNORE_MT_POSITION_0") |
| 150 | } |
| 151 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 152 | if getMakeVars(ctx, "TW_IGNORE_ABS_MT_TRACKING_ID") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 153 | cflags = append(cflags, "-DTW_IGNORE_ABS_MT_TRACKING_ID") |
| 154 | } |
| 155 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 156 | if getMakeVars(ctx, "TW_INPUT_BLACKLIST") != "" { |
| 157 | cflags = append(cflags, "-DTW_INPUT_BLACKLIST="+getMakeVars(ctx, "TW_INPUT_BLACKLIST")) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 158 | } |
| 159 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 160 | if getMakeVars(ctx, "TW_WHITELIST_INPUT") != "" { |
| 161 | cflags = append(cflags, "-DWHITELIST_INPUT="+getMakeVars(ctx, "TW_WHITELIST_INPUT")) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 162 | } |
| 163 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 164 | if getMakeVars(ctx, "TW_HAPTICS_TSPDRV") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 165 | cflags = append(cflags, "-DTW_HAPTICS_TSPDRV") |
| 166 | } |
| 167 | |
| 168 | return cflags |
| 169 | } |
| 170 | |
| 171 | func globalSrcs(ctx android.BaseContext) []string { |
| 172 | var srcs []string |
| 173 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 174 | if getMakeVars(ctx, "TW_TARGET_USES_QCOM_BSP") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 175 | srcs = append(srcs, "graphics_overlay.cpp") |
| 176 | } |
| 177 | |
nebrassy | 0c3533f | 2021-11-14 16:05:51 +0100 | [diff] [blame] | 178 | matches, err := filepath.Glob("external/libdrm/Android.*") |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 179 | _ = matches |
| 180 | if err == nil { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 181 | srcs = append(srcs, "graphics_drm.cpp") |
| 182 | } |
| 183 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 184 | if getMakeVars(ctx, "TW_HAPTICS_TSPDRV") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 185 | srcs = append(srcs, "tspdrv.cpp") |
| 186 | } |
| 187 | return srcs |
| 188 | } |
| 189 | |
| 190 | func globalIncludes(ctx android.BaseContext) []string { |
| 191 | var includes []string |
| 192 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 193 | if getMakeVars(ctx, "TW_INCLUDE_CRYPTO") != "" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 194 | includes = append(includes, "bootable/recovery/crypto/fscrypt") |
| 195 | } |
| 196 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 197 | if getMakeVars(ctx, "TW_TARGET_USES_QCOM_BSP") == "true" { |
| 198 | if getMakeVars(ctx, "TARGET_PREBUILT_KERNEL") != "" { |
| 199 | includes = append(includes, getMakeVars(ctx, "TARGET_OUT_INTERMEDIATES")+"/KERNEL_OBJ/usr/include") |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 200 | } else { |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 201 | if getMakeVars(ctx, "TARGET_CUSTOM_KERNEL_HEADERS") != "" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 202 | includes = append(includes, "bootable/recovery/minuitwrp") |
| 203 | } else { |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 204 | includes = append(includes, getMakeVars(ctx, "TARGET_CUSTOM_KERNEL_HEADERS")) |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | } else { |
| 208 | includes = append(includes, "bootable/recovery/minuitwrp") |
| 209 | } |
| 210 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 211 | if getMakeVars(ctx, "TW_INCLUDE_JPEG") != "" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 212 | includes = append(includes, "external/jpeg") |
| 213 | } |
| 214 | |
| 215 | return includes |
| 216 | } |
| 217 | |
| 218 | func globalStaticLibs(ctx android.BaseContext) []string { |
| 219 | var staticLibs []string |
| 220 | |
nebrassy | 0c3533f | 2021-11-14 16:05:51 +0100 | [diff] [blame] | 221 | matches, err := filepath.Glob("external/libdrm/Android.*") |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 222 | _ = matches |
| 223 | if err == nil { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 224 | matches, err = filepath.Glob("external/libdrm/Android.common.mk") |
| 225 | if err != nil { |
| 226 | staticLibs = append(staticLibs, "libdrm_platform") |
| 227 | } else { |
| 228 | staticLibs = append(staticLibs, "libdrm") |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return staticLibs |
| 233 | } |
| 234 | |
| 235 | func globalSharedLibs(ctx android.BaseContext) []string { |
| 236 | var sharedLibs []string |
| 237 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 238 | if getMakeVars(ctx, "TW_SUPPORT_INPUT_1_2_HAPTICS") == "true" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 239 | sharedLibs = append(sharedLibs, "android.hardware.vibrator@1.2") |
| 240 | sharedLibs = append(sharedLibs, "libhidlbase") |
| 241 | } |
| 242 | |
nebrassy | 76224bd | 2021-04-05 11:52:44 +0200 | [diff] [blame] | 243 | if getMakeVars(ctx, "TW_SUPPORT_INPUT_AIDL_HAPTICS") == "true" { |
nebrassy | 204e36e | 2021-11-14 23:27:51 +0100 | [diff] [blame] | 244 | sharedLibs = append(sharedLibs, "android.hardware.vibrator-V1-ndk_platform") |
| 245 | sharedLibs = append(sharedLibs, "android.hardware.vibrator-V1-cpp") |
nebrassy | 76224bd | 2021-04-05 11:52:44 +0200 | [diff] [blame] | 246 | } |
| 247 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 248 | if getMakeVars(ctx, "TW_INCLUDE_JPEG") != "" { |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 249 | sharedLibs = append(sharedLibs, "libjpeg") |
| 250 | } |
| 251 | return sharedLibs |
| 252 | } |
| 253 | |
| 254 | func globalRequiredModules(ctx android.BaseContext) []string { |
| 255 | var requiredModules []string |
| 256 | |
bigbiff | 6e0ca7d | 2021-02-06 19:15:16 -0500 | [diff] [blame] | 257 | if getMakeVars(ctx, "TARGET_PREBUILT_KERNEL") != "" { |
| 258 | var kernelDir = getMakeVars(ctx, "TARGET_OUT_INTERMEDIATES") + ")/KERNEL_OBJ/usr" |
bigbiff | d81833a | 2021-01-17 11:06:57 -0500 | [diff] [blame] | 259 | requiredModules = append(requiredModules, kernelDir) |
| 260 | } |
| 261 | return requiredModules |
| 262 | } |
| 263 | |
| 264 | func libMinuiTwrpDefaults(ctx android.LoadHookContext) { |
| 265 | type props struct { |
| 266 | Target struct { |
| 267 | Android struct { |
| 268 | Cflags []string |
| 269 | Enabled *bool |
| 270 | } |
| 271 | } |
| 272 | Cflags []string |
| 273 | Srcs []string |
| 274 | Include_dirs []string |
| 275 | Static_libs []string |
| 276 | Shared_libs []string |
| 277 | Required []string |
| 278 | } |
| 279 | |
| 280 | p := &props{} |
| 281 | p.Cflags = globalFlags(ctx) |
| 282 | s := globalSrcs(ctx) |
| 283 | p.Srcs = s |
| 284 | i := globalIncludes(ctx) |
| 285 | p.Include_dirs = i |
| 286 | staticLibs := globalStaticLibs(ctx) |
| 287 | p.Static_libs = staticLibs |
| 288 | sharedLibs := globalSharedLibs(ctx) |
| 289 | p.Shared_libs = sharedLibs |
| 290 | requiredModules := globalRequiredModules(ctx) |
| 291 | p.Required = requiredModules |
| 292 | ctx.AppendProperties(p) |
| 293 | } |
| 294 | |
| 295 | func init() { |
| 296 | android.RegisterModuleType("libminuitwrp_defaults", libMinuiTwrpDefaultsFactory) |
| 297 | } |
| 298 | |
| 299 | func libMinuiTwrpDefaultsFactory() android.Module { |
| 300 | module := cc.DefaultsFactory() |
| 301 | android.AddLoadHook(module, libMinuiTwrpDefaults) |
| 302 | |
| 303 | return module |
| 304 | } |