summaryrefslogtreecommitdiffstats
path: root/util/qualcomm
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-11-10 16:02:16 -0800
committerJulius Werner <jwerner@chromium.org>2020-11-12 01:43:14 +0000
commit2b5bdaea630ecd35e22473816cd4000dd8f8916e (patch)
treebaeb8346c68d463515f67ca0ffc252722fa6da7a /util/qualcomm
parent9c50462fd7ce12cb9b3ef94f5bef39dcfa24ca6c (diff)
downloadcoreboot-2b5bdaea630ecd35e22473816cd4000dd8f8916e.tar.gz
coreboot-2b5bdaea630ecd35e22473816cd4000dd8f8916e.tar.bz2
coreboot-2b5bdaea630ecd35e22473816cd4000dd8f8916e.zip
Delete soc/qualcomm/sdm845
Work on this SoC was abandoned and never finished. It's not really usable in its current state, so let's get rid of it. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: I23453e3e47ac336ab61687004470e5e79172cafe Reviewed-on: https://review.coreboot.org/c/coreboot/+/47428 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/qualcomm')
-rw-r--r--util/qualcomm/scripts/cmm/debug_cb_845.cmm113
1 files changed, 0 insertions, 113 deletions
diff --git a/util/qualcomm/scripts/cmm/debug_cb_845.cmm b/util/qualcomm/scripts/cmm/debug_cb_845.cmm
deleted file mode 100644
index 696f1c08688f..000000000000
--- a/util/qualcomm/scripts/cmm/debug_cb_845.cmm
+++ /dev/null
@@ -1,113 +0,0 @@
-;============================================================================
-;## SPDX-License-Identifier: GPL-2.0-only
-;============================================================================
-; Name:
-; debug_cb_845.cmm
-;
-; Description:
-; Debug coreboot 845 front-end
-;============================================================================
-
-;============================================================================
-; CMM script variables
-;============================================================================
-
-LOCAL &TargetPkg
-
-GLOBAL &BBEntryAddr // Bootblock Entry
-GLOBAL &BBExitAddr // Bootblock Exit to Xbl-Sec
-GLOBAL &VEREntryAddr // Verstage Entry
-GLOBAL &ROMEntryAddr // Romstage Entry
-GLOBAL &QCLEntryAddr // QCLstage Entry
-GLOBAL &RAMEntryAddr // Ramstage Entry
-GLOBAL &BL31EntryAddr // BL31 Entry
-GLOBAL &DCEntryAddr // Depthcharge Entry
-GLOBAL &KernelEntryAddr // Kernel Entry
-
-GLOBAL &PreRamConsoleAddr
-GLOBAL &RamConsoleAddr
-GLOBAL &PreRamCbfsCache
-GLOBAL &VBoot2Work
-GLOBAL &Stack
-GLOBAL &Ttb
-GLOBAL &Timestamp
-GLOBAL &CbmemTop
-GLOBAL &PostRamCbfsCache
-
-GLOBAL &CBTablePtr
-
-;============================================================================
-
-;---------------------------------------------------
-; Entry point
-;---------------------------------------------------
-ENTRY &ImageName
-
- // Later these can be parameterized
- &TargetPkg="Sdm845Pkg"
-
- // These settings come from .../src/soc/qualcomm/sdm845/include/soc/memlayout.ld
- &BBEntryAddr=0x14816000
- &VEREntryAddr=0x14680000
- &ROMEntryAddr=0x14680000
- &QCLEntryAddr=0x1485AC00
- &RAMEntryAddr=0x9F860000
- &BL31EntryAddr=0x06820000
- &DCEntryAddr=0xB0104800
- &KernelEntryAddr=0x90080000
-
- &PreRamConsoleAddr=0x14836400
- &VBoot2Work=0x1482E000
- &Stack=0x14832000
- &Ttb=0x1481E000
- &Timestamp=0x14836000
- &PreRamCbfsCache=0x1483E400
- &CbmemTop=0x280000000
- &PostRamCbfsCache=0x9F800000
- // End of memlayout.ld settings
-
- // Common commands irrespective of &Mode
- PATH
- &CwDir=os.pwd()
- PATH + &CwDir
-
- // position at top of coreboot tree
- // find depth count for source loading
- cd ..\..\..\..
- &srcpath=os.pwd()
-
- b.sel PROGRAM onchip
- sys.u
-
- b.d /all
-
- go &BBEntryAddr
- wait !run()
-
-;---------------------------------------------------
-; Setup area and log
-;---------------------------------------------------
- area.clear
- area.reset
- area.create CB_Logs 1000. 8192.
- area.select CB_Logs
-
- winclear
- b.d /all
-
- if FILE.EXIST("C:\TEMP\WIN.CMM")
- do C:\TEMP\WIN.CMM
-
- area.view CB_Logs
-
- PRINT %String "Source Path: &srcpath"
-
- symbol.sourcepath.setbasedir &srcpath\src
-
- // Make parsing simple, upper-case parameters
- &ImageName=STRING.UPR("&ImageName")
- PRINT "&ImageName"
-
- DO debug_cb_common.cmm &TargetPkg &srcpath &xblsrcpath &ImageName
-
- enddo