From 26979fdd43254164bdd6751bc68f24c74e4e2063 Mon Sep 17 00:00:00 2001 From: Souldbminer <162390887+souldbminersmwc@users.noreply.github.com> Date: Sat, 10 Jan 2026 16:46:40 -0500 Subject: [PATCH 1/4] Modify static.yml for deployment branch and actions Updated GitHub Actions workflow to deploy from master branch and changed action versions. --- .github/workflows/static.yml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 00000000..54e3bfc8 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,42 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload entire repository + path: './pages/dist' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 From 94c8a0fd001a400b5e2bdb0c7ad2aadba8bdaa30 Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Sat, 10 Jan 2026 23:00:20 +0100 Subject: [PATCH 2/4] Add w2w patching (for 8gb) --- .../stratosphere/loader/source/oc/pcv/pcv_mariko.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp index 43bc3b7b..80e98e1c 100644 --- a/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp +++ b/Source/Atmosphere/stratosphere/loader/source/oc/pcv/pcv_mariko.cpp @@ -496,6 +496,10 @@ namespace ams::ldr::oc::pcv::mariko { table->burst_mc_regs.mc_emem_arb_timing_r2r = CEIL(table->burst_regs.emc_rext / 4) - 1 + MC_ARB_SFA; } + if (table->burst_mc_regs.mc_emem_arb_timing_w2w > 1) { + table->burst_mc_regs.mc_emem_arb_timing_w2w = CEIL(table->burst_regs.emc_wext / MC_ARB_DIV) - 1 + MC_ARB_SFA; + } + table->burst_mc_regs.mc_emem_arb_timing_r2w = CEIL(tR2W / MC_ARB_DIV) - 1 + MC_ARB_SFA; table->burst_mc_regs.mc_emem_arb_timing_w2r = CEIL(tW2R / MC_ARB_DIV) - 1 + MC_ARB_SFA; From 73498b871ee13f1a792976796131d73e1796f427 Mon Sep 17 00:00:00 2001 From: Lightos1 <124387232+Lightos1@users.noreply.github.com> Date: Sun, 11 Jan 2026 15:12:30 +0100 Subject: [PATCH 3/4] Update main.c --- Source/TinyMemBenchNX/source/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/TinyMemBenchNX/source/main.c b/Source/TinyMemBenchNX/source/main.c index 9f509bc9..f7fe42db 100644 --- a/Source/TinyMemBenchNX/source/main.c +++ b/Source/TinyMemBenchNX/source/main.c @@ -907,6 +907,7 @@ int main(int argc, char* argv[]) (based on tinymembench-pthread, a multi-thread fork of simple benchmark for memory throughput and latency)\n\n"); printf("Copyright (c) 2011-2016 Siarhei Siamashka\n"); printf("Copyright (c) 2023 KazushiMe\n"); + printf("Copyright (c) 2023 hanai3Bi\n"); printf("Copyright (c) 2025 Souldbminer\n"); printf("\n"); @@ -1074,4 +1075,4 @@ latency: // Deinitialize and clean up resources used by the console (important!) consoleExit(NULL); return 0; -} \ No newline at end of file +} From 5bf85f7e86fab5ec14d999355edcdcd87b6d8249 Mon Sep 17 00:00:00 2001 From: Souldbminer <162390887+souldbminerr@users.noreply.github.com> Date: Sun, 11 Jan 2026 11:48:25 -0500 Subject: [PATCH 4/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 62b85423..87c8cad7 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,14 @@ It enables advanced CPU, GPU, and RAM tuning with user-friendly configuration to ## Features * **CPU:** Up to 1963MHz (Mariko) / 1785MHz (Erista) -* **GPU:** Up to 1075MHz (Mariko) / 998MHz (Erista) +* **GPU:** Up to 1075MHz (Mariko) / 921MHz (Erista) * **RAM:** Up to 1866MHz (Mariko) / 1600MHz (Erista) * Over/undervolting support * Built-in configurator * Compatible with most homebrew > *Higher (potentially dangerous) frequencies are unlockable via configuration.* +> *Erista and Mariko units can usually push a bit further fully safely with a bit of undervolting, however this may not work on all units.* > *The exact maximum overclock possible varies per console, although most consoles should be able to do this safely.* ---