Capitalizing on the OP's work, re the comments:
Let $p = (1/52)$ and let $q = (1 - p).$
Given fixed $n \in \mathbb{Z^+},$
Let $F_n(k) \equiv $ chance of drawing the A-spades exactly $k$ times out of $n$
where $k \in \{0,1,2, \cdots, n\}.$
Let $G_n(k) \equiv $ chance of drawing the A-spades at least $k$ times out of $n$
You want the minimum positive integer $n$ such that $G_n(5) \geq 0.90.$
$$F_n(k) = \binom{n}{k}p^k q^{(n-k)}.$$
$$G_n(k) = \sum_{i=k}^n F_n(i)$$
That is, $$G_n(5) = F_n(5) + F_n(6) + \cdots + F_n(n).$$
At this point, for $n$ fixed, you have two choices:
you can compute $G_n(5)$ via the above formula, or you can deduce that
$$G_n(5) = 1 - \left[F_n(0) + F_n(1) + \cdots + F_n(4)\right].$$
This begs the question, is there a cleaner formula that can be used
to compute the smallest value of $n$.
I do not know of any way to use these formulas other than via a computer.
Note that attempting to find a shortcut through logarithms should fail, because
$G_n(k)$ is equal to the sum of some factors, not their product.
Edit
Reaction to "Assume that you stop drawing cards once you make the 5th mark on your wall."
This is a perfectly natural constraint. Unfortunately, the constraint that you will stop drawing cards adds an unnecessary complication.
The cleanest approach, as represented by my answer, is to assume that for a fixed $n$, you are going to draw $n$ times, and then ask whether you have drawn the Ace of Spades at least 5 times.
Edit-1
A case can be made that I have misinterpreted the question that you asked. The alternative interpretation would be the same as the original, except that you are requiring that the last card drawn be the Ace of Spades.
I would compute the answer to the alternative question as
$$F_{(n-1)}(4) \times p.$$
That is $F_{(n-1)}(4)$ represents the probability of drawing the Ace of spades exactly 4 times out of the first (n-1) drawings. The $p$ factor represents also drawing the Ace of spades on the $n^{\text{th}}$ drawing.
Then, you would be looking for the smallest value of $n$ where the above formula computes to $0.90$
However, this is impossible, because of the final factor in the formula, $p$.
This conclusion may seem counter-intuitive. For example, if you decide that you are going to draw 10,000 times, the chances of drawing the Ace of Spades at least 5 times out of 10,000 is well over 0.90. However, the chance of drawing the Ace of Spades exactly 4 times in the first 9,999 times and then drawing the Ace of Spades on the 10,000-th (i.e. the last) drawing is less that (1/52).
In other words, if you are asking how many times do you have to draw so that the combined chances of drawing exactly 4 times out of the first (n-1) draws, and the Ace of Spades on the n-th draw is $\geq$ 90%, the answer is that this is impossible.
Edit-2
Simplification of the determination of $n$ with respect to the primary interpretation of the problem in my answer.
It occurs to me that the algebra can be manipulated to facilitate computing the minimum value of $n$, so that your chances of drawing the Ace of Spades at least 5 times is > 90%.
Suppose we maintain my interpretation of the problem but simultaneously adopt the idea that you will stop on the 5th drawing of the Ace of spades.
Then, the chance of your stopping on the $n^{\text{th}}$ drawing is
$$F_{(n-1)}(4)\times p.$$
This means that the chances of stopping on or before the $n^{\text{th}}$ drawing is
$$p \times \sum_{k=5}^n F_{(k-1)}(4).$$
Since you want this probability to be $\geq 0.90$, you have to determine the smallest value of $n$, such that
$$\sum_{k=5}^n F_{(k-1)}(4) \geq \frac{0.90}{p}.$$
Based on my understanding, determining the minimum value of $n$, based on the above formula should match perfectly with determining the minimum value of $n$ re
$$G_n(5) \geq 0.90.$$