]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/commitdiff
TEMP: smp: Disable SMP for now for A53
authorSam Nelson <sam.nelson@ti.com>
Thu, 2 Aug 2018 02:15:52 +0000 (22:15 -0400)
committerSam Nelson <sam.nelson@ti.com>
Thu, 9 Aug 2018 20:01:32 +0000 (16:01 -0400)
BIOS currently does not support SMP for A53
Disabling SMP configuration for now

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
packages/ti/sdo/ipc/package.bld
packages/ti/sdo/utils/package.bld

index bc1a0380d63b0742daed2e1de5f7a8d65d170e19..0d4ef4f63ecc131cb6a0a04050295dab725bb5e1 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2010-2013, Texas Instruments Incorporated
+ * Copyright (c) 2010-2018, Texas Instruments Incorporated
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -120,6 +120,8 @@ var smpTestArray = [
 for each (var targ in Build.targets) {
 
     if (targ.profiles["smp"] === undefined) continue;
 for each (var targ in Build.targets) {
 
     if (targ.profiles["smp"] === undefined) continue;
+    /* TODO: Currently SMP not supported in BIOS for A53. Disable for now */
+    if (targ.name.match(/A53F/)) continue;
 
     /* For each test... */
     for each (var test in smpTestArray) {
 
     /* For each test... */
     for each (var test in smpTestArray) {
index 17bb145f37c3e7009080d967c8dac9c7922e4703..803fdb2f04196e66dd81e4ce1789510617bb8d88 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2010-2013, Texas Instruments Incorporated
+ * Copyright (c) 2010-2018, Texas Instruments Incorporated
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -113,6 +113,8 @@ var smpTestArray = [
 for each (var targ in Build.targets) {
 
     if (targ.profiles["smp"] === undefined) continue;
 for each (var targ in Build.targets) {
 
     if (targ.profiles["smp"] === undefined) continue;
+    /* TODO: Currently SMP not supported in BIOS for A53. Disable for now */
+    if (targ.name.match(/A53F/)) continue;
 
     /* For each test... */
     for each (var test in smpTestArray) {
 
     /* For each test... */
     for each (var test in smpTestArray) {