stlv7325, a_e115fb: use the proper vendor name Sitlinv

The boards are in fact from a vendor called 成都赛特凌威科技有限公司,
and their English registered trademark (used on the banner of their
Taobao store) is Sitlinv, which sounds like 赛特凌威.

Use this vendor name instead of where it's bought.

Signed-off-by: Icenowy Zheng <uwu@icenowy.me>
This commit is contained in:
Icenowy Zheng 2022-10-30 10:50:01 +08:00
parent 4dc8f7223c
commit d7184fb043
4 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ from migen.genlib.resetsync import AsyncResetSynchronizer
from litex.gen import LiteXModule from litex.gen import LiteXModule
from litex_boards.platforms import taobao_a_e115fb from litex_boards.platforms import sitlinv_a_e115fb
from litex.soc.integration.soc_core import * from litex.soc.integration.soc_core import *
from litex.soc.integration.builder import * from litex.soc.integration.builder import *
@ -41,7 +41,7 @@ class _CRG(LiteXModule):
class BaseSoC(SoCCore): class BaseSoC(SoCCore):
def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True, **kwargs): def __init__(self, sys_clk_freq=int(50e6), with_led_chaser=True, **kwargs):
platform = taobao_a_e115fb.Platform() platform = sitlinv_a_e115fb.Platform()
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------
self.crg = _CRG(platform, sys_clk_freq) self.crg = _CRG(platform, sys_clk_freq)

View File

@ -15,7 +15,7 @@ from migen import *
from litex.gen import LiteXModule from litex.gen import LiteXModule
from litex_boards.platforms import aliexpress_stlv7325 from litex_boards.platforms import sitlinv_stlv7325
from litex.soc.cores.clock import * from litex.soc.cores.clock import *
from litex.soc.integration.soc_core import * from litex.soc.integration.soc_core import *
@ -66,7 +66,7 @@ class BaseSoC(SoCCore):
with_pcie = False, with_pcie = False,
with_sata = False, with_sata = False,
**kwargs): **kwargs):
platform = aliexpress_stlv7325.Platform() platform = sitlinv_stlv7325.Platform()
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------
self.crg = _CRG(platform, sys_clk_freq) self.crg = _CRG(platform, sys_clk_freq)