您尚未登录。

楼主 # 2023-06-21 04:41:44

kukii
会员
注册时间: 2023-06-21
已发帖子: 2
积分: 12

萌新发帖,自己的A33板子识别不上MMC

萌新用A33+AXP223+eMMC 设计了一块板子 但是MMC device 一直识别不到
kvpztooe.png
d05HojLP.png

以下是dts:

/dts-v1/;
#include "sun8i-a33.dtsi"

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

/ {
	model = "Test A33";
	compatible = "allwinner,sun8i-a33";

	aliases {
		serial0 = &uart0;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};
};

&codec {
	status = "okay";
};

&dai {
	status = "okay";
};

&ehci0 {
	status = "okay";
};

&ohci0 {
	status = "okay";
};

&r_rsb {
	status = "okay";

	axp22x: pmic@3a3 {
		compatible = "x-powers,axp223";
		reg = <0x3a3>;
		interrupt-parent = <&nmi_intc>;
		interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
		eldoin-supply = <&reg_dcdc1>;
		swin-supply = <&reg_dcdc1>;
		x-powers,drive-vbus-en;
	};
};

#include "axp223.dtsi"

&ac_power_supply {
	status = "okay";
};

&battery_power_supply {
	status = "okay";
};

&reg_aldo1 {
	regulator-always-on;
	regulator-min-microvolt = <3300000>;
	regulator-max-microvolt = <3300000>;
	regulator-name = "vcc-io";
};

&reg_aldo2 {
	regulator-always-on;
	regulator-min-microvolt = <2350000>;
	regulator-max-microvolt = <2650000>;
	regulator-name = "vdd-dll";
};

&reg_aldo3 {
	regulator-always-on;
	regulator-min-microvolt = <3300000>;
	regulator-max-microvolt = <3300000>;
	regulator-name = "vcc-avcc";
};

&reg_dc1sw {
	regulator-name = "vcc-lcd";
};

&reg_dc5ldo {
	regulator-always-on;
	regulator-min-microvolt = <900000>;
	regulator-max-microvolt = <1400000>;
	regulator-name = "vdd-cpus";
};

&reg_dcdc1 {
	regulator-always-on;
	regulator-min-microvolt = <3000000>;
	regulator-max-microvolt = <3000000>;
	regulator-name = "vcc-3v0";
};

&reg_dcdc2 {
	regulator-always-on;
	regulator-min-microvolt = <900000>;
	regulator-max-microvolt = <1400000>;
	regulator-name = "vdd-sys";
};

&reg_dcdc3 {
	regulator-always-on;
	regulator-min-microvolt = <900000>;
	regulator-max-microvolt = <1400000>;
	regulator-name = "vdd-cpu";
};

&reg_dcdc5 {
	regulator-always-on;
	regulator-min-microvolt = <1500000>;
	regulator-max-microvolt = <1500000>;
	regulator-name = "vcc-dram";
};

&reg_drivevbus {
	regulator-name = "usb0-vbus";
	status = "okay";
};

&reg_rtc_ldo {
	regulator-name = "vcc-rtc";
};

&simplefb_lcd {
	vcc-lcd-supply = <&reg_dc1sw>;
};

&uart0 {
	pinctrl-names = "default";
	pinctrl-0 = <&uart0_pins_b>;
	status = "okay";
};

&usb_otg {
	dr_mode = "otg";
	status = "okay";
};

&usb_power_supply {
	status = "okay";
};

&usbphy {
	usb0_id_det-gpios = <&pio 1 3 GPIO_ACTIVE_HIGH>; /* PB3 */
	usb0_vbus_power-supply = <&usb_power_supply>;
	usb0_vbus-supply = <&reg_drivevbus>;
	status = "okay";
};

&mmc2 {
	pinctrl-names = "default";
	pinctrl-0 = <&mmc2_8bit_pins>;
	vmmc-supply = <&reg_dcdc1>;
	bus-width = <8>;
	non-removable;
	cap-mmc-hw-reset;
	status = "okay";
	reg = <0x01c11000 0x1000>;
	#address-cells = <1>;
	#size-cells = <0>;
};

以下是defconfig:

CONFIG_ARM=y
CONFIG_ARCH_SUNXI=y
CONFIG_SPL=y
CONFIG_MACH_SUN8I_A33=y
CONFIG_DRAM_CLK=432
CONFIG_DRAM_ZQ=15291
CONFIG_DRAM_ODT_EN=y
CONFIG_UART0_PORT_F=y
CONFIG_USB0_VBUS_PIN="AXP0-VBUS-ENABLE"
CONFIG_USB0_VBUS_DET="AXP0-VBUS-DETECT"
CONFIG_USB0_ID_DET="PH9"
CONFIG_AXP_GPIO=y
CONFIG_NR_DRAM_BANKS=1
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
# CONFIG_CMD_FLASH is not set
# CONFIG_SPL_DOS_PARTITION is not set
# CONFIG_SPL_EFI_PARTITION is not set
CONFIG_DEFAULT_DEVICE_TREE="baji"
CONFIG_USB_MUSB_HOST=y
CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE=y
CONFIG_MMC_SUNXI_SLOT_EXTRA=2
CONFIG_SYS_BOARD="sunxi"

然后是串口输出

U-Boot 2019.01-rc3 (Jun 20 2023 - 13:38:14 -0700) Allwinner Technology

CPU:   Allwinner A33 (SUN8I 1667)
Model: Test A33
DRAM:  1 GiB
MMC:   
Loading Environment from FAT... In:    serial
Out:   serial
Err:   serial
Net:   No ethernet found.
starting USB...
USB0:   A charger is plugged into the OTG: Port not available.
Hit any key to stop autoboot:  2  1  0 
No MMC device available
No MMC device available
starting USB...
USB0:   A charger is plugged into the OTG: Port not available.
USB is stopped. Please issue 'usb start' first.
starting USB...

知识实在有限 请问需要怎么改?。。

离线

楼主 #1 2023-06-21 05:20:43

kukii
会员
注册时间: 2023-06-21
已发帖子: 2
积分: 12

Re: 萌新发帖,自己的A33板子识别不上MMC

追加—— 上面用的是uboot sunxi 主线uboot会卡在executing the spl...
sudo ./sunxi-fel -v uboot ../u-boot-master/u-boot-sunxi-with-spl.bin

Stack pointers: sp_irq=0x00002000, sp=0x00005E08
MMU is not enabled by BROM
Executing the SPL... done.
usb_bulk_send() ERROR -7: Operation timed out

串口显示

U-Boot SPL 2023.07-rc4 (Jun 20 2023 - 14:15:08 -0700)
DRAM: 1024 MiB

然后没力

最近编辑记录 kukii (2023-06-21 05:21:13)

离线

#3 2023-06-21 11:29:26

shaoxi2010
会员
注册时间: 2019-06-13
已发帖子: 367
积分: 316

Re: 萌新发帖,自己的A33板子识别不上MMC

usb_bulk_send() ERROR -7: Operation timed out
这个出现在内存初始化后了,大概率在SPL里面跑飞了,你多加点打印点,检查下内存电源再试试
这个时候理论应该回到FEL模式,继续下载uboot

离线

#4 2023-06-21 12:40:27

memory
会员
注册时间: 2021-08-11
已发帖子: 244
积分: 218

Re: 萌新发帖,自己的A33板子识别不上MMC

好像A33不支持所有的eMMC,因为brom有点bug,貌似spi检测flash影响了eMMC的复位引脚。

离线

页脚

工信部备案:粤ICP备20025096号 Powered by FluxBB

感谢为中文互联网持续输出优质内容的各位老铁们。 QQ: 516333132, 微信(wechat): whycan_cn (哇酷网/挖坑网/填坑网) service@whycan.cn